aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_objects.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/test_objects.py b/tests/test_objects.py
new file mode 100644
index 0000000..9646269
--- /dev/null
+++ b/tests/test_objects.py
@@ -0,0 +1,22 @@
+import unittest
+
+from pyapd import objects
+
+
+class TestObjects(unittest.TestCase):
+
+ def test_activity_from_json(self):
+ act = objects.ActivityObject.from_jsons('''{
+ "id": "http://example.org/123456"
+ }''')
+ self.assertIsInstance(act, objects.ActivityObject)
+ self.assertEqual(act.id, 'http://example.org/123456')
+
+ def test_activity_to_json(self):
+ act = objects.ActivityObject(
+ id="http://example.org/123456"
+ )
+ data = act.to_jsons()
+ self.assertIsInstance(data, str)
+ self.assertIn('"id": "http://example.org/123456"', data)
+