mirror of
https://github.com/simon987/nyaa.git
synced 2025-12-16 00:09:05 +00:00
Update tests, add tests structure for views
This commit is contained in:
26
tests/views/test_users.py
Normal file
26
tests/views/test_users.py
Normal file
@@ -0,0 +1,26 @@
|
||||
import unittest
|
||||
|
||||
from tests import NyaaTestCase
|
||||
|
||||
|
||||
class UsersTestCase(NyaaTestCase):
|
||||
""" Tests for nyaa.views.users """
|
||||
@unittest.skip('Not yet implemented')
|
||||
def test_view_user(self):
|
||||
pass
|
||||
|
||||
@unittest.skip('Not yet implemented')
|
||||
def test_activate_user(self):
|
||||
pass
|
||||
|
||||
@unittest.skip('Not yet implemented')
|
||||
def test__create_user_class_choices(self):
|
||||
pass
|
||||
|
||||
@unittest.skip('Not yet implemented')
|
||||
def test__get_activation_link(self):
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user