mirror of
https://github.com/sb745/NyaaV3.git
synced 2025-03-14 06:26:55 +02: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()
|