We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f45db5f + caa396d commit 98c9801Copy full SHA for 98c9801
.gitignore
@@ -11,6 +11,7 @@ lib/bundler/man
11
pkg
12
rdoc
13
spec/reports
14
+spec/examples.txt
15
test/tmp
16
test/version_tmp
17
tmp
spec/spec_helper.rb
@@ -7,5 +7,13 @@
7
config.expect_with :rspec do |c|
8
c.syntax = [:expect]
9
end
10
- config.order = "random"
+
+ config.mock_with :rspec do |mocks|
+ mocks.verify_partial_doubles = true
+ end
+ config.order = :random
+ Kernel.srand config.seed
18
+ config.example_status_persistence_file_path = "spec/examples.txt"
19
0 commit comments