Sha256: 5c7a60b633213b24b8230a642c07552890c8170913d58473053d8fe1d094df90
Contents?: true
Size: 684 Bytes
Versions: 11
Compression:
Stored size: 684 Bytes
Contents
require_relative 'spec_helper' describe CssController, type: :controller do before :all do cache = Rails.root.join('tmp/cache') cache.rmtree if cache.exist? end it "integrates with Rails and Sass" do get :test, file: 'sass' expect(response).to be_success expect(response.body).to eq "a {\n" + " -webkit-transition: all 1s;\n" + " transition: all 1s; }\n" end end describe 'Rake task' do it "shows debug" do info = `cd spec/app; bundle exec rake autoprefixer:info` expect(info).to match(/Browsers:\n Chrome: 25\n\n/) expect(info).to match(/ transition: webkit/) end end
Version data entries
11 entries across 11 versions & 1 rubygems