aboutsummaryrefslogtreecommitdiffstats
path: root/test/helper.rb
blob: 6e8ac836fcf636a70a61787c63f9dfebeb0790e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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

module Arel
  class Test < MiniTest::Test
    def assert_like expected, actual
      assert_equal expected.gsub(/\s+/, ' ').strip,
                   actual.gsub(/\s+/, ' ').strip
    end
  end
end