From 3b5cd220c997db5dec98120eccd963f868d0ecad Mon Sep 17 00:00:00 2001 From: bnewbold Date: Mon, 25 Jan 2016 13:26:08 -0800 Subject: tests: simple json load test --- tests/test_json.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/test_json.py (limited to 'tests/test_json.py') diff --git a/tests/test_json.py b/tests/test_json.py new file mode 100644 index 0000000..19dfc18 --- /dev/null +++ b/tests/test_json.py @@ -0,0 +1,27 @@ +""" +This file contains tests that parse and dump JSON serialized entities. + +It requires the 'nose' python package. To run it, just enter this directory and +do: + + $ nosetests + +If there are errors it can be helpful to debug with: + + $ nosetests --pdb +""" + +from nose.tools import * +from nose.plugins.skip import SkipTest +import unittest +import random +import json + +from bbb import * + +class TestJSON(unittest.TestCase): + + def test_wikidata_org_item(self): + with open('tests/example_item_nyc.json', 'r') as f: + d = json.loads(''.join(f.readlines())) + wi = WikibaseItem.from_dict(d) -- cgit v1.2.3