summaryrefslogtreecommitdiff
path: root/run_tests
diff options
context:
space:
mode:
authorGeorge Kraft <george.kraft@calxeda.com>2013-12-07 11:54:25 -0600
committerGeorge Kraft <george.kraft@calxeda.com>2013-12-07 11:54:25 -0600
commit7af4294fbd7e214f669adc6ded77dadb627c41f9 (patch)
tree094cd771e0f6609c6c8fb520cea9860fb58eb30a /run_tests
parent3335170002c3804dcfc24746532572daf12d982f (diff)
downloadcxmanage-7af4294fbd7e214f669adc6ded77dadb627c41f9.tar.gz
CXMAN-263: Add unit tests for the Dummy class
Unit testing our unit testing framework! Whoa! Actually, Dummy doesn't have much code, but has been pretty hard to wrap my head around. So, here are some tests to assert that it behaves correctly.
Diffstat (limited to 'run_tests')
-rwxr-xr-xrun_tests6
1 files changed, 4 insertions, 2 deletions
diff --git a/run_tests b/run_tests
index cbb04f0..c121186 100755
--- a/run_tests
+++ b/run_tests
@@ -35,8 +35,10 @@ import unittest
import xmlrunner
from cxmanage_api.tests import tftp_test, image_test, node_test, fabric_test, \
- tasks_test
-test_modules = [tftp_test, image_test, node_test, fabric_test, tasks_test]
+ tasks_test, dummy_test
+test_modules = [
+ tftp_test, image_test, node_test, fabric_test, tasks_test, dummy_test
+]
def main():
""" Load and run tests """