mirror of
https://github.com/sb745/NyaaV3.git
synced 2025-03-13 06:16:54 +02:00
26 lines
548 B
Python
26 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()
|