aboutsummaryrefslogtreecommitdiffstats
path: root/test/spec_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/spec_helper.rb')
-rw-r--r--test/spec_helper.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/spec_helper.rb b/test/spec_helper.rb
new file mode 100644
index 0000000000..dd288e0d0d
--- /dev/null
+++ b/test/spec_helper.rb
@@ -0,0 +1,21 @@
+require 'rubygems'
+require 'minitest/autorun'
+require 'fileutils'
+require 'arel'
+
+require 'support/fake_record'
+Arel::Table.engine = Arel::Sql::Engine.new(FakeRecord::Base.new)
+
+# HACK require 'support/shared/tree_manager_shared'
+
+class Object
+ def must_be_like other
+ self.gsub(/\s+/, ' ').strip.must_equal other.gsub(/\s+/, ' ').strip
+ end
+
+ # TODO: remove
+ def check truthiness
+ raise "not truthy" unless truthiness
+ end
+end
+