mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-03-25 08:45:54 +00:00
10 lines
192 B
Ruby
10 lines
192 B
Ruby
unless ENV['CI']
|
|
require 'simplecov'
|
|
SimpleCov.start do
|
|
add_filter 'spec'
|
|
end
|
|
end
|
|
|
|
require 'simple_oauth'
|
|
|
|
Dir[File.expand_path('../support/**/*.rb', __FILE__)].each{|f| require f }
|