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

require 'libyajl2'

RSpec.configure do |c|

  c.order = 'random'

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

end