We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20553ab commit 358c7faCopy full SHA for 358c7fa
.travis.yml
@@ -9,6 +9,3 @@ script: bundle exec rake
9
branches:
10
only:
11
- master
12
-matrix:
13
- allow_failures:
14
- - rvm: 2.0.0
features/step_definitions/html_steps.rb
@@ -22,7 +22,9 @@
22
actual_headers = text.split("\n")
23
expected_headers = table.raw.map { |row| row.join(": ") }
24
25
- actual_headers.should =~ expected_headers
+ expected_headers.each do |row|
26
+ actual_headers.should include(row)
27
+ end
28
end
29
30
Then /^I should see the route is "([^"]*)"$/ do |route|
0 commit comments