def test_list_should_call_getStoredSearches_if_store_is_searches(self):
        storage = BlipTVStorage()
        storage.getStoredSearches = Mock()
        storage.getStoredSearches.return_value = ""

        storage.list({"store": "searches"})

        storage.getStoredSearches.assert_called_with({"store": "searches"})