diff options
Diffstat (limited to 'linden/indra/test/test_llmanifest.py')
-rw-r--r-- | linden/indra/test/test_llmanifest.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/linden/indra/test/test_llmanifest.py b/linden/indra/test/test_llmanifest.py index 8bfca24..797d5ac 100644 --- a/linden/indra/test/test_llmanifest.py +++ b/linden/indra/test/test_llmanifest.py | |||
@@ -106,9 +106,13 @@ class TestLLManifest(unittest.TestCase): | |||
106 | 106 | ||
107 | def testruncommand(self): | 107 | def testruncommand(self): |
108 | self.assertEqual("Hello\n", self.m.run_command("echo Hello")) | 108 | self.assertEqual("Hello\n", self.m.run_command("echo Hello")) |
109 | def tmp_test(): | 109 | def exit_1_test(): |
110 | self.m.run_command("exit 1") | ||
111 | self.assertRaises(RuntimeError, exit_1_test) | ||
112 | def not_found_test(): | ||
110 | self.m.run_command("test_command_that_should_not_be_found") | 113 | self.m.run_command("test_command_that_should_not_be_found") |
111 | self.assertRaises(RuntimeError, tmp_test) | 114 | self.assertRaises(RuntimeError, not_found_test) |
115 | |||
112 | 116 | ||
113 | def testpathof(self): | 117 | def testpathof(self): |
114 | self.assertEqual(self.m.src_path_of("a"), "src/a") | 118 | self.assertEqual(self.m.src_path_of("a"), "src/a") |