rubydns 2.0.2 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/spec/spec_helper.rb DELETED
@@ -1,30 +0,0 @@
1
-
2
- if ENV['COVERAGE'] || ENV['TRAVIS']
3
- begin
4
- require 'simplecov'
5
-
6
- SimpleCov.start do
7
- add_filter "/spec/"
8
- end
9
-
10
- if ENV['TRAVIS']
11
- require 'coveralls'
12
- Coveralls.wear!
13
- end
14
- rescue LoadError
15
- warn "Could not load simplecov: #{$!}"
16
- end
17
- end
18
-
19
- require "bundler/setup"
20
- require "async"
21
- require "async/rspec"
22
-
23
- RSpec.configure do |config|
24
- # Enable flags like --only-failures and --next-failure
25
- config.example_status_persistence_file_path = ".rspec_status"
26
-
27
- config.expect_with :rspec do |c|
28
- c.syntax = :expect
29
- end
30
- end