aboutsummaryrefslogtreecommitdiff
path: root/tests/controllers/article.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/controllers/article.py')
-rw-r--r--tests/controllers/article.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/controllers/article.py b/tests/controllers/article.py
new file mode 100644
index 00000000..b6c5225c
--- /dev/null
+++ b/tests/controllers/article.py
@@ -0,0 +1,12 @@
+from tests.base import BasePyaggTest
+from pyaggr3g470r.controllers import ArticleController
+
+
+class ArticleControllerTest(BasePyaggTest):
+ _contr_cls = ArticleController
+
+ def test_controller(self):
+ article = ArticleController(2).read()[0].dump()
+ self.assertFalse(article['readed'])
+ article['readed'] = True # article get read when retreived through get
+ self._test_controller_rights(article, article['user_id'])
bgstack15