blob: 0c7136b2cb9e0f24a51c3cdb570ac92f1dcc8c96 [file] [log] [blame]
Kevin Clark3eca0782008-06-18 00:54:53 +00001require 'rubygems'
Kevin Clark356f8612008-06-18 01:08:05 +00002# require at least 1.1.4 to fix a bug with describing Modules
3gem 'rspec', '>= 1.1.4'
Kevin Clark3eca0782008-06-18 00:54:53 +00004require 'spec'
5
Kevin Clarkd47cd662008-06-18 01:05:17 +00006# turn on deprecation so we can test it
7module Thrift
8 DEPRECATION = true
9end
10
Kevin Clark3eca0782008-06-18 00:54:53 +000011require File.dirname(__FILE__) + '/../lib/thrift'
Kevin Clark0ff9e8c2008-06-18 01:05:03 +000012
13class Object
14 # tee is a useful method, so let's let our tests have it
15 def tee(&block)
16 block.call(self)
17 self
18 end
19end