aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/test_basic.py
blob: 1856536e6b9f05c9a425dea5e0575f32b8a7661a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
''' Crawl the running Docker site and verify all links give a 200 OK '''

import unittest
import subprocess


# Placeholder for future python based codi/TURFF

class BasicTests(unittest.TestCase):
    ''' Base class for testing '''

    def setUp(self):
        ''' Define some unique data for validation '''
        pass


    def tearDown(self):
        ''' Destroy unique data '''
        pass