diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2013-12-22 23:38:02 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2013-12-22 23:38:02 -0800 |
commit | 792ad6b2d8157b4ebd6c2c5ad1fd2ea798d2d415 (patch) | |
tree | f0a6d4b17a132dc689a7adb1bb99e2f6dc41255d /spec | |
parent | 8bec58b6b657d53ea89a2d83f0c9d672dbff1e6d (diff) | |
download | ffi-yajl-792ad6b2d8157b4ebd6c2c5ad1fd2ea798d2d415.tar.gz |
fix spec_helper
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec_helper.rb | 5 |
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 |