mirror of https://github.com/nyaadevs/nyaa.git
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()
|