1
0
Fork 0
mirror of https://gitlab.com/SIGBUS/nyaa.git synced 2024-09-21 07:46:39 +00:00
nyaa/tests/views/test_admin.py
2017-08-15 17:19:45 +03:00

19 lines
341 B
Python

import unittest
from tests import NyaaTestCase
class AdminTestCase(NyaaTestCase):
""" Tests for nyaa.views.admin """
@unittest.skip('Not yet implemented')
def test_adminlog(self):
pass
@unittest.skip('Not yet implemented')
def test_reports(self):
pass
if __name__ == '__main__':
unittest.main()