Skip to content

Commit ce99adb

Browse files
committed
Style/RedundantPercentQ
1 parent e926388 commit ce99adb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

features/step_definitions/additional_cli_steps.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
require "rspec/rails/feature_check"
1313

1414
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'
1717
end
1818

1919
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'
2222
end
2323

2424
Given /active job is available/ do

rspec-rails.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Gem::Specification.new do |s|
3434

3535
version_string = ['>= 4.2']
3636

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
4040

4141
# in these blocks expected_rspec_version is set up to track the released
4242
# versions of RSpec. RSpec Rails does not have lock step versioning with the

0 commit comments

Comments
 (0)