Skip to content
This repository was archived by the owner on Oct 7, 2022. It is now read-only.

Commit 8495a2f

Browse files
author
Sebastian Wilgosz
committed
Basic rspec config
1 parent 7174bd9 commit 8495a2f

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.rspec

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--color

spec/helper.rb

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
require 'oauth2'
2+
require 'rspec'
3+
require 'creatubbles'
4+
5+
Dir['spec/support/**/*.rb'].each do |f|
6+
require f.gsub('spec/', '').gsub('.rb', '')
7+
end
8+
9+
RSpec.configure do |config|
10+
config.expect_with :rspec do |c|
11+
c.syntax = :expect
12+
end
13+
end
14+
15+
16+
RSpec.configure do |conf|
17+
include CreationJson
18+
end

0 commit comments

Comments
 (0)