aboutsummaryrefslogtreecommitdiffstats
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 5d3f5a2950..797fe0a028 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -3,11 +3,15 @@ require 'spec'
require 'fileutils'
require 'arel'
+require 'support/matchers/be_like'
+
if adapter = ENV['ADAPTER']
require "support/connections/#{adapter}_connection.rb"
end
Spec::Runner.configure do |config|
+ config.include Matchers
+
if defined?(ActiveRecord::Base)
tmp = File.expand_path('../../tmp', __FILE__)