diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-02-08 15:13:57 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-02-08 15:13:57 +0000 |
commit | af5872b7d432f78befcb7e9f87187a5b82b588bf (patch) | |
tree | cb8420064142f4c3a3d95b2f9ad5ca21232cbf3b /test/test_helper.rb | |
parent | aeb6dbc306163548a78d320d291b45b17b2ecf7f (diff) | |
download | redmine-af5872b7d432f78befcb7e9f87187a5b82b588bf.tar.gz redmine-af5872b7d432f78befcb7e9f87187a5b82b588bf.zip |
Support for accent insensitive search with PostgreSQL (#18801).
If the unaccent extension is installed, the search engine will use it in order to do accent insensitive search.
git-svn-id: http://svn.redmine.org/redmine/trunk@13989 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r-- | test/test_helper.rb | 4 |
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" |