aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2019-04-06 16:17:06 +0200
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2019-04-06 16:17:06 +0200
commitbd844547c7eacd2ab44cfda79bef499961a19fd5 (patch)
treef079a43400c83145d3ea4ab5466b13b74bcbd530 /tests
parentb7c6edf9d519ee1f3516d6e4cf60ca25269a74d0 (diff)
Naive ActivityStream object
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)
+