rf-web/vendor/bundle/gems/rb-inotify-0.10.0/spec/spec_helper.rb
2019-10-21 10:18:17 +02:00

30 lines
516 B
Ruby

if ENV['COVERAGE'] || ENV['TRAVIS']
begin
require 'simplecov'
SimpleCov.start do
add_filter "/spec/"
end
if ENV['TRAVIS']
require 'coveralls'
Coveralls.wear!
end
rescue LoadError
warn "Could not load simplecov: #{$!}"
end
end
require "bundler/setup"
require "rb-inotify"
RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
config.example_status_persistence_file_path = ".rspec_status"
config.expect_with :rspec do |c|
c.syntax = :expect
end
end