mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-11-13 08:49:15 +00:00
19 lines
341 B
Python
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()
|