Sha256: 7eb653141d8943e2a2ad8fbe621923564b0b66e3d493c0afb0d17211d02506f9
Contents?: true
Size: 559 Bytes
Versions: 28
Compression:
Stored size: 559 Bytes
Contents
require File.expand_path('../spec_helper', __FILE__) describe CssController, :type => :controller do before :all do cache = Rails.root.join('tmp/cache') cache.rmtree if cache.exist? end it "integrates with Rails" do get :test, :file => 'test' response.should be_success response.body.should == PREFIXED end end describe 'Rake task' do it "inspects" do inspect = `cd spec/app; bundle exec rake autoprefixer:inspect` inspect.should =~ /Browsers:\n Chrome: 25\n\n/ inspect.should =~ / transition: webkit/ end end
Version data entries
28 entries across 28 versions & 1 rubygems