1
0
Fork 0
mirror of https://gitlab.com/SIGBUS/nyaa.git synced 2024-09-21 11:26:40 +00:00
nyaa/tests/views/test_users.py
2017-08-15 17:19:45 +03:00

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()