summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2013-12-22 23:38:02 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2013-12-22 23:38:02 -0800
commit792ad6b2d8157b4ebd6c2c5ad1fd2ea798d2d415 (patch)
treef0a6d4b17a132dc689a7adb1bb99e2f6dc41255d /spec
parent8bec58b6b657d53ea89a2d83f0c9d672dbff1e6d (diff)
downloadffi-yajl-792ad6b2d8157b4ebd6c2c5ad1fd2ea798d2d415.tar.gz
fix spec_helper
Diffstat (limited to 'spec')
-rw-r--r--spec/spec_helper.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index be115cd..54d8b97 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -3,9 +3,7 @@ $: << File.expand_path(File.join(File.dirname( __FILE__ ), "../lib"))
require 'ffi_yajl'
RSpec.configure do |c|
- c.treat_symbols_as_metadata_keys_with_true_values = true
- c.run_all_when_everything_filtered = true
- c.filter_run :focus
+ c.filter_run_excluding :ruby_gte_19 => true unless RUBY_VERSION.to_f >= 1.9
c.order = 'random'
@@ -13,5 +11,4 @@ RSpec.configure do |c|
c.syntax = :expect
end
- c.filter_run_excluding :ruby_gte_19 => true unless RUBY_VERSION.to_f >= 1.9
end