summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
blob: 270ab6df8a51e2858d3d8e9132af19170ebf392d (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