aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_json.rb
blob: 6bece67c0072d4963b5ab9808fd0165f1dda44b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'testing_env'
require 'vendor/multi_json'

class JsonSmokeTest < Test::Unit::TestCase
  def test_encode
    hash = { "foo" => ["bar", "baz"] }
    json = %q|{"foo":["bar","baz"]}|
    assert_equal json, MultiJson.encode(hash)
  end

  def test_decode
    hash = { "foo" => ["bar", "baz"], "qux" => 1 }
    json = %q|{"foo":["bar","baz"],"qux":1}|
    assert_equal hash, MultiJson.decode(json)
  end
end