diff options
author | Jacek Antonelli | 2008-08-15 23:45:07 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:07 -0500 |
commit | 8465910c79b8e746e04fd581cca2d60399e569b9 (patch) | |
tree | f43fec3e83c46e0d6190dca923d6fb268b52ffdd /linden/indra/test/test_llmanifest.py | |
parent | Second Life viewer sources 1.18.2.1 (diff) | |
download | meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.zip meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.gz meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.bz2 meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.xz |
Second Life viewer sources 1.18.3.2-RC
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") |