Sha256: 74432586e66ecafc6cf3c8e3742c91a8559b70e3447e598cf08d2ee13400f6a2
Contents?: true
Size: 486 Bytes
Versions: 4
Compression:
Stored size: 486 Bytes
Contents
require "test_helper" require "capybara/rails" # This blog post helped so much: http://rakeroutes.com/blog/write-a-gem-for-the-rails-asset-pipeline/ # Thanks, Stephen!!! :) if Cell.rails_version >= 3.1 class AssetPipelineTest < MiniTest::Spec include Capybara::DSL register_spec_type(/integration$/, self) it "what" do visit "/assets/application.js" page.text.must_include 'var Album = {};' page.text.must_include 'var Songs = [];' end end end
Version data entries
4 entries across 4 versions & 2 rubygems