summaryrefslogtreecommitdiffstats
path: root/test/test_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r--test/test_helper.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 1762de868..63159ad9a 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -169,6 +169,10 @@ class ActiveSupport::TestCase
ActiveRecord::Base.connection.adapter_name =~ /mysql/i
end
+ def postgresql?
+ ActiveRecord::Base.connection.adapter_name =~ /postgresql/i
+ end
+
def assert_save(object)
saved = object.save
message = "#{object.class} could not be saved"