Skip to content

Commit

Permalink
initial test for comms module
Browse files Browse the repository at this point in the history
  • Loading branch information
acutesoftware committed Mar 23, 2018
1 parent 59967ff commit 69fa063
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tests/test_comms.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/python3
# coding: utf-8
# test_bias.py

import unittest
import sys
import os
root_fldr = os.path.abspath(os.path.dirname(os.path.abspath(__file__)) + os.sep + ".." + os.sep + "aikif" )
sys.path.append(root_fldr)

import comms as mod_comms


dummy_comms = [
{'key':'value'},
]


class CommsTest(unittest.TestCase):
def tearDown(self):
unittest.TestCase.tearDown(self)


def test_01_begin(self):
#self.comms = mod_bias.Bias(test_metadata)
mod_comms.TEST()
self.assertEqual(1,1)



if __name__ == '__main__':
unittest.main()

0 comments on commit 69fa063

Please sign in to comment.