1
0
mirror of https://github.com/fraoustin/piwigotools.git synced 2026-08-11 16:32:57 +00:00
This commit is contained in:
fraoustin
2016-01-19 19:25:59 +01:00
commit 21d6972d86
11 changed files with 439 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/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()