diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-07-02 22:09:22 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-07-02 22:12:25 +0200 |
commit | 98860d1739729a5272406a218c6b9b346327bac6 (patch) | |
tree | e56adf3bfd8ce30c1703c4733c179cc3532c86e6 /activerecord/test/cases | |
parent | eb5b7a8ced04383bed0b81ba2ce2194dc3e65629 (diff) | |
download | rails-98860d1739729a5272406a218c6b9b346327bac6.tar.gz rails-98860d1739729a5272406a218c6b9b346327bac6.tar.bz2 rails-98860d1739729a5272406a218c6b9b346327bac6.zip |
remove unused `ActiveRecord::TestCase#sqlite3` method.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/test_case.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/test/cases/test_case.rb b/activerecord/test/cases/test_case.rb index 2c574facc8..70b970639a 100644 --- a/activerecord/test/cases/test_case.rb +++ b/activerecord/test/cases/test_case.rb @@ -93,9 +93,3 @@ module ActiveRecord ActiveSupport::Notifications.subscribe('sql.active_record', SQLCounter.new) end - -ActiveRecord::TestCase.class_eval do - def sqlite3? connection - connection.class.name.split('::').last == "SQLite3Adapter" - end -end |