summaryrefslogtreecommitdiff
path: root/shell/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/test_shell.py')
-rw-r--r--shell/test_shell.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/shell/test_shell.py b/shell/test_shell.py
index ddba251..cf891aa 100644
--- a/shell/test_shell.py
+++ b/shell/test_shell.py
@@ -30,13 +30,17 @@ import logging
class ShellTests(subunit.ExecTestCase):
- def test_shell(self):
+ def test_sourcing(self):
"""./tests/test_source_library.sh"""
+ def test_functions(self):
+ """./tests/test_function_output.sh"""
+
def test_suite():
result = TestSuite()
- result.addTest(ShellTests('test_shell'))
+ result.addTest(ShellTests('test_sourcing'))
+ result.addTest(ShellTests('test_functions'))
return result