Skip to content

Commit

Permalink
reworked unitttest a little
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Fiers committed Sep 13, 2012
1 parent 55519fd commit 1566ac7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/scripts/moa.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Test if moa works

moa
moa -h

8 changes: 7 additions & 1 deletion test/test_doctest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import random
import unittest2 as unittest

try:
import unittest
except ImportError:
import unittest2 as unittest


import doctest

import moa.job
Expand Down

0 comments on commit 1566ac7

Please sign in to comment.