summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
blob: 54d8b97c30688b2e80d6d9081e660d6e04a44693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$: << File.expand_path(File.join(File.dirname( __FILE__ ), "../lib"))

require 'ffi_yajl'

RSpec.configure do |c|
  c.filter_run_excluding :ruby_gte_19 => true unless RUBY_VERSION.to_f >= 1.9

  c.order = 'random'

  c.expect_with :rspec do |c|
    c.syntax = :expect
  end

end