mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
use SQLite3::VERSION rather than the deprecated class
This commit is contained in:
parent
366e7854ac
commit
0616585619
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ class QueryCacheTest < ActiveRecord::TestCase
|
|||
# Oracle adapter returns count() as Fixnum or Float
|
||||
if current_adapter?(:OracleAdapter)
|
||||
assert_kind_of Numeric, Task.connection.select_value("SELECT count(*) AS count_all FROM tasks")
|
||||
elsif current_adapter?(:SQLite3Adapter) && SQLite3::Version::VERSION > '1.2.5' || current_adapter?(:Mysql2Adapter) || current_adapter?(:MysqlAdapter)
|
||||
elsif current_adapter?(:SQLite3Adapter) && SQLite3::VERSION > '1.2.5' || current_adapter?(:Mysql2Adapter) || current_adapter?(:MysqlAdapter)
|
||||
# Future versions of the sqlite3 adapter will return numeric
|
||||
assert_instance_of Fixnum,
|
||||
Task.connection.select_value("SELECT count(*) AS count_all FROM tasks")
|
||||
|
|
Loading…
Reference in a new issue