diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/plugin_tests.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/plugin_tests.py b/tests/plugin_tests.py index 6adffdeb..b57e031e 100644 --- a/tests/plugin_tests.py +++ b/tests/plugin_tests.py @@ -237,21 +237,10 @@ class AddCopySpecTests(unittest.TestCase): expected_paths = set(map(pathmunge, self.expect_paths)) self.assertEquals(self.mp.copy_paths, expected_paths) - # add_copy_spec() - - def test_single_file(self): - self.mp.add_copy_spec('tests/tail_test.txt') - self.assert_expect_paths() - def test_glob_file(self): self.mp.add_copy_spec('tests/tail_test.*') self.assert_expect_paths() - def test_multiple_files(self): - self.mp.add_copy_spec(['tests/tail_test.txt', 'tests/test.txt']) - self.assertEquals(len(self.mp.copy_paths), 2) - - # add_copy_spec_limit() def test_single_file_no_limit(self): self.mp.add_copy_spec("tests/tail_test.txt") |