(self)
| 16 | mock.patch.stopall() |
| 17 | |
| 18 | def test_list(self): |
| 19 | params = get_synced_params() |
| 20 | |
| 21 | cmd = folder.FolderListCommand() |
| 22 | with mock.patch('builtins.print'), mock.patch('keepercommander.api.get_record_shares'): |
| 23 | cmd.execute(params) |
| 24 | cmd.execute(params, detail=True) |
| 25 | |
| 26 | def test_list_json_no_ansi_colors(self): |
| 27 | """Test that ls command with JSON format doesn't include ANSI color codes.""" |
nothing calls this directly
no test coverage detected