mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-12-23 09:50:00 +00:00
27 lines
548 B
Python
27 lines
548 B
Python
|
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()
|