mirror of
https://github.com/nov/fb_graph2
synced 2023-03-27 23:22:15 -04:00
19 lines
No EOL
307 B
Ruby
19 lines
No EOL
307 B
Ruby
require 'simplecov'
|
|
|
|
SimpleCov.start do
|
|
add_filter 'spec'
|
|
end
|
|
|
|
require 'rspec'
|
|
require 'rspec/its'
|
|
require 'fb_graph2'
|
|
|
|
RSpec.configure do |config|
|
|
config.expect_with :rspec do |c|
|
|
c.syntax = [:should, :expect]
|
|
end
|
|
end
|
|
|
|
Dir[File.join(__dir__, 'spec_helper/*.rb')].each do |file|
|
|
require file
|
|
end |