File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
features/step_definitions Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 12
12
require "rspec/rails/feature_check"
13
13
14
14
Then /^the example(s)? should( all)? pass$/ do |_ , _ |
15
- step %q( the output should contain "0 failures")
16
- step %q( the exit status should be 0)
15
+ step ' the output should contain "0 failures"'
16
+ step ' the exit status should be 0'
17
17
end
18
18
19
19
Then /^the example(s)? should( all)? fail/ do |_ , _ |
20
- step %q( the output should not contain "0 failures")
21
- step %q( the exit status should not be 0)
20
+ step ' the output should not contain "0 failures"'
21
+ step ' the exit status should not be 0'
22
22
end
23
23
24
24
Given /active job is available/ do
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ Gem::Specification.new do |s|
34
34
35
35
version_string = [ '>= 4.2' ]
36
36
37
- s . add_runtime_dependency %q( actionpack) , version_string
38
- s . add_runtime_dependency %q( activesupport) , version_string
39
- s . add_runtime_dependency %q( railties) , version_string
37
+ s . add_runtime_dependency ' actionpack' , version_string
38
+ s . add_runtime_dependency ' activesupport' , version_string
39
+ s . add_runtime_dependency ' railties' , version_string
40
40
41
41
# in these blocks expected_rspec_version is set up to track the released
42
42
# versions of RSpec. RSpec Rails does not have lock step versioning with the
You can’t perform that action at this time.
0 commit comments