1
0
mirror of https://github.com/fraoustin/piwigotools.git synced 2025-06-07 07:56:31 +00:00
piwigotools/tests/test_basic.py
fraoustin 21d6972d86 init
2016-01-19 19:25:59 +01:00

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()