20 lines
293 B
Python
20 lines
293 B
Python
import os
|
|
from puppetboard import app
|
|
import unittest
|
|
import tempfile
|
|
|
|
|
|
class AppTestCase(unittest.TestCase):
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_first_test(self):
|
|
self.assertTrue(True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|