mirror of
https://github.com/fraoustin/piwigotools.git
synced 2025-06-07 07:56:31 +00:00
19 lines
294 B
Python
19 lines
294 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Basic Test Case
|
|
"""
|
|
|
|
import unittest
|
|
|
|
class BasicTestCase(unittest.TestCase):
|
|
"""
|
|
Class for Basic Test for piwigotools
|
|
"""
|
|
def setUp(self):
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|