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 97d08dd commit 334c726Copy full SHA for 334c726
spec/rspec/rails/assertion_delegator_spec.rb
@@ -10,7 +10,7 @@
10
it "delegates back to the including instance for methods the assertion module requires" do
11
assertions = Module.new {
12
def has_thing?(thing)
13
- self.things.include?(thing)
+ things.include?(thing)
14
end
15
}
16
spec/spec_helper.rb
@@ -2,7 +2,7 @@
2
3
module RSpecRails
4
class Application < ::Rails::Application
5
- self.config.secret_key_base = 'ASecretString'
+ config.secret_key_base = 'ASecretString'
6
7
if defined?(ActionCable)
8
ActionCable.server.config.cable = { "adapter" => "test" }
0 commit comments