fix gemfile conflict

This commit is contained in:
Eliott Appleford 2014-07-06 04:25:07 +01:00
commit a47b58c58d
5 changed files with 20 additions and 19 deletions

View file

@ -9,7 +9,7 @@ Feature: GZIP assets during build
| build/javascripts/test.js.gz |
| build/stylesheets/test.css |
| build/stylesheets/test.css.gz |
And build/javascripts/test.js.gz should be binary
And the file "build/javascripts/test.js.gz" should be gzipped
Scenario: Preview server doesn't change
Given the Server is running at "gzip-app"

View file

@ -72,6 +72,6 @@ Then /^the file "([^"]*)" should contain '([^']*)'$/ do |file, partial_content|
check_file_content(file, partial_content, true)
end
And /(.*) should be binary/ do |file|
And /the file "(.*)" should be gzipped/ do |file|
expect(File.binread(File.join(current_dir, file), 2)).to eq(['1F8B'].pack('H*'))
end

View file

@ -68,7 +68,7 @@ When /^I go to "([^\"]*)"$/ do |url|
end
Then /^going to "([^\"]*)" should not raise an exception$/ do |url|
expect(lambda { @browser.get(URI.escape(url)) }).to_not raise_exception
expect{ @browser.get(URI.escape(url)) }.to_not raise_exception
end
Then /^the content type should be "([^\"]*)"$/ do |expected|