aboutsummaryrefslogblamecommitdiffstats
path: root/test/helper.rb
blob: 1292c09a08b6cb4b261c9e27189cb8528c1abab7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                             
                                         
 

                        
                                                                  
     
   
require 'rubygems'
require 'minitest/autorun'
require 'fileutils'
require 'arel'

require 'support/fake_record'
Arel::Table.engine = FakeRecord::Base.new

class Object
  def must_be_like other
    gsub(/\s+/, ' ').strip.must_equal other.gsub(/\s+/, ' ').strip
  end
end