We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cef6683 commit e887367Copy full SHA for e887367
.rspec
@@ -0,0 +1,3 @@
1
+--color
2
+--warnings
3
+--require spec_helper
spec/TODO
spec/lib/rspotify_spec.rb
@@ -0,0 +1,2 @@
+describe RSpotify do
+end
spec/spec_helper.rb
@@ -0,0 +1,27 @@
+require 'rspotify'
+
+RSpec.configure do |config|
4
5
+ config.filter_run :focus
6
+ config.run_all_when_everything_filtered = true
7
8
+ if config.files_to_run.one?
9
+ config.default_formatter = 'doc'
10
+ end
11
12
+ config.profile_examples = 10
13
14
+ config.order = :random
15
16
+ Kernel.srand config.seed
17
18
+ config.expect_with :rspec do |expectations|
19
+ expectations.syntax = :expect
20
21
22
+ config.mock_with :rspec do |mocks|
23
+ mocks.syntax = :expect
24
25
+ mocks.verify_partial_doubles = true
26
27
0 commit comments