aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/sqlite3/quoting_test.rb
Commit message (Expand)AuthorAgeFilesLines
* "Use assert_nil if expecting nil. This will fail in minitest 6."Akira Matsuda2016-12-251-1/+1
* applies new string literal convention in activerecord/testXavier Noria2016-08-061-8/+8
* Fix sqlite3 test failureRyuta Kamizono2016-06-041-2/+2
* Dont re-define class SQLite3Adapter on testArthur Neves2016-06-031-92/+86
* Should keep quoting behaivor of a time column value in sqlite3 adapterRyuta Kamizono2016-04-151-3/+8
* make it possible to run AR tests with bin/testYves Senn2015-06-111-1/+1
* `type_cast_for_database` -> `serialize`Sean Griffin2015-02-171-1/+1
* Always convert strings to UTF-8, regardless of column type in SQLiteSean Griffin2015-01-281-1/+1
* Stop passing a column to `quote` in testsSean Griffin2015-01-101-2/+2
* Stop explicitly passing `nil` as the column to `type_cast`Sean Griffin2015-01-011-12/+12
* Stop relying on columns in sqlite quoting testsSean Griffin2015-01-011-22/+1
* Use a type object for type casting behavior on SQLite3Sean Griffin2014-07-111-0/+7
* Always pass a column with a type object to quoteSean Griffin2014-06-281-2/+2
* Test Case - Change method nameAkshay Vishnoi2014-05-281-1/+1
* Remove checks against `column.type` in abstract adapter quotingSean Griffin2014-05-261-2/+2
* Delegate `Column#type` to the injected type objectSean Griffin2014-05-191-6/+6
* Add a type object to Column constructorSean Griffin2014-05-171-6/+6
* Test typecasting on instance rather than class itselfAkshay Vishnoi2014-05-031-1/+1
* quoting: Check if id is a valid method before using itArthur Neves2013-12-191-0/+7
* Use Encoding::UTF_8 constant :do_not_litter:Akira Matsuda2013-01-281-1/+1
* fix tests for SQLite3AdapterAndrey Deryabin2012-04-271-1/+1
* only log an error if there is a logger. fixes #5226Aaron Patterson2012-03-021-0/+9
* Don't type-cast unknown types to YAML.Stephen Celis2012-01-201-2/+2
* bigdecimal should be typecast to a float on sqlite3. fixes #2162Aaron Patterson2011-07-201-1/+1
* please use ruby -I lib:test path/to/test.rb, or export RUBY_OPTAaron Patterson2011-06-061-1/+1
* Refactor Active Record test connection setup. Please see the RUNNING_UNIT_TES...Jon Leighton2011-06-041-1/+1
* inserting big decimals as strings works consistently among dbs, so use string...Aaron Patterson2011-04-141-1/+1
* adding a type cast method for prepared statementsAaron Patterson2011-04-141-0/+93