(self)
| 51 | self.assertNotEqual(owd, params.current_folder) |
| 52 | |
| 53 | def test_tree(self): |
| 54 | params = get_synced_params() |
| 55 | cmd = folder.FolderTreeCommand() |
| 56 | |
| 57 | with mock.patch('builtins.print'): |
| 58 | cmd.execute(params) |
| 59 | with self.assertRaises(CommandError): |
| 60 | cmd.execute(params, folder='Invalid') |
| 61 | |
| 62 | def test_make_folder(self): |
| 63 | params = get_synced_params() |
nothing calls this directly
no test coverage detected