mirror of
https://github.com/simon987/nyaa.git
synced 2025-12-14 23:59:01 +00:00
Update tests, add tests structure for views
This commit is contained in:
23
tests/views/test_main.py
Normal file
23
tests/views/test_main.py
Normal file
@@ -0,0 +1,23 @@
|
||||
import unittest
|
||||
|
||||
from tests import NyaaTestCase
|
||||
|
||||
|
||||
class MainTestCase(NyaaTestCase):
|
||||
""" Tests for nyaa.views.main """
|
||||
def test_index_url(self):
|
||||
rv = self.client.get('/')
|
||||
self.assertIn(b'Browse :: Nyaa', rv.data)
|
||||
self.assertIn(b'Guest', rv.data)
|
||||
|
||||
def test_rss_url(self):
|
||||
rv = self.client.get('/?page=rss')
|
||||
self.assertIn(b'/xmlns/nyaa', rv.data)
|
||||
|
||||
def test_invalid_url(self):
|
||||
rv = self.client.get('/notarealpage')
|
||||
self.assertIn(b'404 Not Found', rv.data)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user