+ js = ActiveSupport::JSON.decode(@response.body)
+ assert_not_nil js
+ assert_equal "Feature", js["type"]
+ assert_equal "Point", js["geometry"]["type"]
+ assert_equal notes(:open_note).lat, js["geometry"]["coordinates"][0]
+ assert_equal notes(:open_note).lon, js["geometry"]["coordinates"][1]
+ assert_equal notes(:open_note).id, js["properties"]["id"]
+ assert_equal note_url(notes(:open_note), :format => "json"), js["properties"]["url"]
+ assert_equal comment_note_url(notes(:open_note), :format => "json"), js["properties"]["comment_url"]
+ assert_equal close_note_url(notes(:open_note), :format => "json"), js["properties"]["close_url"]
+ assert_equal notes(:open_note).created_at, js["properties"]["date_created"]
+ assert_equal notes(:open_note).status, js["properties"]["status"]