diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2015-04-24 19:05:14 +0200 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2015-05-15 00:22:08 +0200 |
commit | 804d6fc6b9268577dbfd85f169f1a3f58e5cd6bc (patch) | |
tree | e6926a2734cc48d9160071c7238bf25ed0c6e108 /tests/controllers/article.py | |
parent | correcting log level for error in feed retrieving (diff) | |
download | newspipe-804d6fc6b9268577dbfd85f169f1a3f58e5cd6bc.tar.gz newspipe-804d6fc6b9268577dbfd85f169f1a3f58e5cd6bc.tar.bz2 newspipe-804d6fc6b9268577dbfd85f169f1a3f58e5cd6bc.zip |
adding base unittests
Diffstat (limited to 'tests/controllers/article.py')
-rw-r--r-- | tests/controllers/article.py | 12 |
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']) |