mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-11-14 07:39:14 +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()
|