Add initial unit test framework.

Add initial tests for mergedict.
This commit is contained in:
Mike Milner
2012-01-12 15:31:19 +01:00
parent 76fb8d7570
commit 44203e5bce
2 changed files with 67 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
all: test pylint pyflakes
pylint:
-pylint cloudinit
pyflakes:
-pyflakes .
test:
-nosetests tests/unittests/
.PHONY: test pylint pyflakes