Merge pull request #2011 from reitermarkus/json-test

Remove JSON test.
This commit is contained in:
Markus Reiter 2017-02-15 15:40:28 +01:00 committed by GitHub
commit 716b408068

View File

@ -1,20 +0,0 @@
require "testing_env"
require "json"
class JsonSmokeTest < Homebrew::TestCase
def test_encode
hash = { "foo" => ["bar", "baz"] }
json = '{"foo":["bar","baz"]}'
assert_equal json, JSON.generate(hash)
end
def test_decode
hash = { "foo" => ["bar", "baz"], "qux" => 1 }
json = '{"foo":["bar","baz"],"qux":1}'
assert_equal hash, JSON.parse(json)
end
def test_decode_failure
assert_raises(JSON::ParserError) { JSON.parse("nope") }
end
end