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