Simplify some JSON tests

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7750 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2007-10-06 00:33:51 +00:00
parent 5b2e8b1eb1
commit 55640fb939

View File

@@ -23,7 +23,7 @@ class JsonSerializationTest < Test::Unit::TestCase
assert_match %r{"name": "Konata Izumi"}, json
assert_match %r{"age": 16}, json
assert_match %r{"created_at": #{ActiveSupport::JSON.encode(Time.utc(2006, 8, 1))}}, json
assert json.include?(%("created_at": #{ActiveSupport::JSON.encode(Time.utc(2006, 8, 1))}))
assert_match %r{"awesome": true}, json
assert_match %r{"preferences": \{"shows": "anime"\}}, json
end
@@ -34,7 +34,7 @@ class JsonSerializationTest < Test::Unit::TestCase
assert_match %r{"name": "Konata Izumi"}, json
assert_match %r{"age": 16}, json
assert_no_match %r{"awesome": true}, json
assert_no_match %r{"created_at": #{ActiveSupport::JSON.encode(Time.utc(2006, 8, 1))}}, json
assert !json.include?(%("created_at": #{ActiveSupport::JSON.encode(Time.utc(2006, 8, 1))}))
assert_no_match %r{"preferences": \{"shows": "anime"\}}, json
end
@@ -44,7 +44,7 @@ class JsonSerializationTest < Test::Unit::TestCase
assert_no_match %r{"name": "Konata Izumi"}, json
assert_no_match %r{"age": 16}, json
assert_match %r{"awesome": true}, json
assert_match %r{"created_at": #{ActiveSupport::JSON.encode(Time.utc(2006, 8, 1))}}, json
assert json.include?(%("created_at": #{ActiveSupport::JSON.encode(Time.utc(2006, 8, 1))}))
assert_match %r{"preferences": \{"shows": "anime"\}}, json
end
@@ -174,4 +174,4 @@ class DatabaseConnectedJsonEncodingTest < Test::Unit::TestCase
assert_equal %({1: {"name": "David"}}), authors_hash.to_json(:only => [1, :name])
end
end
end