diff options
author | Michael Adam <obnox@samba.org> | 2016-12-13 22:31:47 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-03-28 14:13:50 +0100 |
commit | 4461bf7285310ab78a2695998d4d771d61f3e10e (patch) | |
tree | 48397538eaeb188cf890bf1cecccf0a92d67f29b /tests | |
parent | 4399abe9ea32f474b791f4847317bc45e9c613eb (diff) | |
download | sos-4461bf7285310ab78a2695998d4d771d61f3e10e.tar.gz |
[plugins] remove duplicate plugin tests
Signed-off-by: Michael Adam <obnox@samba.org>
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") |