blob: fc157413888e06b18e23908a7c2d63240a642205 [file] [log] [blame]
Kevin Clark3eca0782008-06-18 00:54:53 +00001require 'rubygems'
2require 'spec'
3
Kevin Clarkd47cd662008-06-18 01:05:17 +00004# turn on deprecation so we can test it
5module Thrift
6 DEPRECATION = true
7end
8
Kevin Clark3eca0782008-06-18 00:54:53 +00009require File.dirname(__FILE__) + '/../lib/thrift'
Kevin Clark0ff9e8c2008-06-18 01:05:03 +000010
11class Object
12 # tee is a useful method, so let's let our tests have it
13 def tee(&block)
14 block.call(self)
15 self
16 end
17end