aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/postgresql/money_test.rb
diff options
context:
space:
mode:
authorJohn Gesimondo <john@jmondo.com>2015-06-11 13:31:01 -0700
committerJohn Gesimondo <john@jmondo.com>2015-06-23 14:38:00 -0700
commit4f58c501cf9355258fe16b2526ac01586ff71b08 (patch)
tree79370cdaa16652def1a003c18896422605fa84d8 /activerecord/test/cases/adapters/postgresql/money_test.rb
parent1022796ac075a5f1a3ca45f4d48284d4bfa2567a (diff)
downloadrails-4f58c501cf9355258fe16b2526ac01586ff71b08.tar.gz
rails-4f58c501cf9355258fe16b2526ac01586ff71b08.tar.bz2
rails-4f58c501cf9355258fe16b2526ac01586ff71b08.zip
Display decimal defaults as strings to keep precision
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql/money_test.rb')
-rw-r--r--activerecord/test/cases/adapters/postgresql/money_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/money_test.rb b/activerecord/test/cases/adapters/postgresql/money_test.rb
index e3670c203d..c031178479 100644
--- a/activerecord/test/cases/adapters/postgresql/money_test.rb
+++ b/activerecord/test/cases/adapters/postgresql/money_test.rb
@@ -56,7 +56,7 @@ class PostgresqlMoneyTest < ActiveRecord::PostgreSQLTestCase
def test_schema_dumping
output = dump_table_schema("postgresql_moneys")
assert_match %r{t\.money\s+"wealth",\s+scale: 2$}, output
- assert_match %r{t\.money\s+"depth",\s+scale: 2,\s+default: 150\.55$}, output
+ assert_match %r{t\.money\s+"depth",\s+scale: 2,\s+default: "150\.55"$}, output
end
def test_create_and_update_money