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 eb091da commit 7d006d0Copy full SHA for 7d006d0
spec/spec_helper.rb
@@ -4,6 +4,12 @@
4
5
KnapsackPro::Adapters::RSpecAdapter.bind
6
7
+RSpec.configure do |config|
8
+ config.before(:suite) do
9
+ puts 'RSpec before(:suite) hook called.'
10
+ end
11
+end
12
+
13
# This file was generated by the `rails generate rspec:install` command. Conventionally, all
14
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
15
# The generated `.rspec` file contains `--require spec_helper` which will cause
@@ -98,9 +104,3 @@
98
104
Kernel.srand config.seed
99
105
=end
100
106
end
101
-
102
-RSpec.configure do |config|
103
- config.before(:suite) do
- puts 'RSpec before(:suite) hook called.'
- end
-end
0 commit comments