From c781f77ef3dd961c5d0e41cd8652068338692565 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Tue, 14 Jan 2014 23:56:03 +0100 Subject: [PATCH] Rename test files to pattern expected by test runners --- tests/audio/{actor_test.py => test_actor.py} | 0 tests/audio/{listener_test.py => test_listener.py} | 0 tests/audio/{playlists_test.py => test_playlists.py} | 0 tests/audio/{scan_test.py => test_scan.py} | 0 tests/backend/{listener_test.py => test_listener.py} | 0 tests/config/{config_test.py => test_config.py} | 0 tests/config/{schemas_test.py => test_schemas.py} | 0 tests/config/{types_test.py => test_types.py} | 0 tests/config/{validator_tests.py => test_validator.py} | 0 tests/core/{actor_test.py => test_actor.py} | 0 tests/core/{events_test.py => test_events.py} | 0 tests/core/{library_test.py => test_library.py} | 0 tests/core/{listener_test.py => test_listener.py} | 0 tests/core/{playback_test.py => test_playback.py} | 0 tests/core/{playlists_test.py => test_playlists.py} | 0 tests/core/{tracklist_test.py => test_tracklist.py} | 0 tests/http/{events_test.py => test_events.py} | 0 tests/local/{events_test.py => test_events.py} | 0 tests/local/{library_test.py => test_library.py} | 0 tests/local/{playback_test.py => test_playback.py} | 0 tests/local/{playlists_test.py => test_playlists.py} | 0 tests/local/{tracklist_test.py => test_tracklist.py} | 0 tests/local/{translator_test.py => test_translator.py} | 0 .../mpd/protocol/{audio_output_test.py => test_audio_output.py} | 0 .../protocol/{authentication_test.py => test_authentication.py} | 0 tests/mpd/protocol/{channels_test.py => test_channels.py} | 0 .../mpd/protocol/{command_list_test.py => test_command_list.py} | 0 tests/mpd/protocol/{connection_test.py => test_connection.py} | 0 .../{current_playlist_test.py => test_current_playlist.py} | 0 tests/mpd/protocol/{idle_test.py => test_idle.py} | 0 tests/mpd/protocol/{music_db_test.py => test_music_db.py} | 0 tests/mpd/protocol/{playback_test.py => test_playback.py} | 0 tests/mpd/protocol/{reflection_test.py => test_reflection.py} | 0 tests/mpd/protocol/{regression_test.py => test_regression.py} | 0 tests/mpd/protocol/{status_test.py => test_status.py} | 0 tests/mpd/protocol/{stickers_test.py => test_stickers.py} | 0 .../{stored_playlists_test.py => test_stored_playlists.py} | 0 tests/mpd/{dispatcher_test.py => test_dispatcher.py} | 0 tests/mpd/{exception_test.py => test_exceptions.py} | 0 tests/mpd/{status_test.py => test_status.py} | 0 tests/mpd/{translator_test.py => test_translator.py} | 0 tests/outputs/__init__.py | 1 - tests/{commands_test.py => test_commands.py} | 0 tests/{exceptions_test.py => test_exceptions.py} | 0 tests/{ext_test.py => test_ext.py} | 0 tests/{help_test.py => test_help.py} | 0 tests/{models_test.py => test_models.py} | 0 tests/{version_test.py => test_version.py} | 0 tests/utils/network/{connection_test.py => test_connection.py} | 0 .../utils/network/{lineprotocol_test.py => test_lineprotocol.py} | 0 tests/utils/network/{server_test.py => test_server.py} | 0 tests/utils/network/{utils_test.py => test_utils.py} | 0 tests/utils/{deps_test.py => test_deps.py} | 0 tests/utils/{encoding_test.py => test_encoding.py} | 0 tests/utils/{jsonrpc_test.py => test_jsonrpc.py} | 0 tests/utils/{path_test.py => test_path.py} | 0 56 files changed, 1 deletion(-) rename tests/audio/{actor_test.py => test_actor.py} (100%) rename tests/audio/{listener_test.py => test_listener.py} (100%) rename tests/audio/{playlists_test.py => test_playlists.py} (100%) rename tests/audio/{scan_test.py => test_scan.py} (100%) rename tests/backend/{listener_test.py => test_listener.py} (100%) rename tests/config/{config_test.py => test_config.py} (100%) rename tests/config/{schemas_test.py => test_schemas.py} (100%) rename tests/config/{types_test.py => test_types.py} (100%) rename tests/config/{validator_tests.py => test_validator.py} (100%) rename tests/core/{actor_test.py => test_actor.py} (100%) rename tests/core/{events_test.py => test_events.py} (100%) rename tests/core/{library_test.py => test_library.py} (100%) rename tests/core/{listener_test.py => test_listener.py} (100%) rename tests/core/{playback_test.py => test_playback.py} (100%) rename tests/core/{playlists_test.py => test_playlists.py} (100%) rename tests/core/{tracklist_test.py => test_tracklist.py} (100%) rename tests/http/{events_test.py => test_events.py} (100%) rename tests/local/{events_test.py => test_events.py} (100%) rename tests/local/{library_test.py => test_library.py} (100%) rename tests/local/{playback_test.py => test_playback.py} (100%) rename tests/local/{playlists_test.py => test_playlists.py} (100%) rename tests/local/{tracklist_test.py => test_tracklist.py} (100%) rename tests/local/{translator_test.py => test_translator.py} (100%) rename tests/mpd/protocol/{audio_output_test.py => test_audio_output.py} (100%) rename tests/mpd/protocol/{authentication_test.py => test_authentication.py} (100%) rename tests/mpd/protocol/{channels_test.py => test_channels.py} (100%) rename tests/mpd/protocol/{command_list_test.py => test_command_list.py} (100%) rename tests/mpd/protocol/{connection_test.py => test_connection.py} (100%) rename tests/mpd/protocol/{current_playlist_test.py => test_current_playlist.py} (100%) rename tests/mpd/protocol/{idle_test.py => test_idle.py} (100%) rename tests/mpd/protocol/{music_db_test.py => test_music_db.py} (100%) rename tests/mpd/protocol/{playback_test.py => test_playback.py} (100%) rename tests/mpd/protocol/{reflection_test.py => test_reflection.py} (100%) rename tests/mpd/protocol/{regression_test.py => test_regression.py} (100%) rename tests/mpd/protocol/{status_test.py => test_status.py} (100%) rename tests/mpd/protocol/{stickers_test.py => test_stickers.py} (100%) rename tests/mpd/protocol/{stored_playlists_test.py => test_stored_playlists.py} (100%) rename tests/mpd/{dispatcher_test.py => test_dispatcher.py} (100%) rename tests/mpd/{exception_test.py => test_exceptions.py} (100%) rename tests/mpd/{status_test.py => test_status.py} (100%) rename tests/mpd/{translator_test.py => test_translator.py} (100%) delete mode 100644 tests/outputs/__init__.py rename tests/{commands_test.py => test_commands.py} (100%) rename tests/{exceptions_test.py => test_exceptions.py} (100%) rename tests/{ext_test.py => test_ext.py} (100%) rename tests/{help_test.py => test_help.py} (100%) rename tests/{models_test.py => test_models.py} (100%) rename tests/{version_test.py => test_version.py} (100%) rename tests/utils/network/{connection_test.py => test_connection.py} (100%) rename tests/utils/network/{lineprotocol_test.py => test_lineprotocol.py} (100%) rename tests/utils/network/{server_test.py => test_server.py} (100%) rename tests/utils/network/{utils_test.py => test_utils.py} (100%) rename tests/utils/{deps_test.py => test_deps.py} (100%) rename tests/utils/{encoding_test.py => test_encoding.py} (100%) rename tests/utils/{jsonrpc_test.py => test_jsonrpc.py} (100%) rename tests/utils/{path_test.py => test_path.py} (100%) diff --git a/tests/audio/actor_test.py b/tests/audio/test_actor.py similarity index 100% rename from tests/audio/actor_test.py rename to tests/audio/test_actor.py diff --git a/tests/audio/listener_test.py b/tests/audio/test_listener.py similarity index 100% rename from tests/audio/listener_test.py rename to tests/audio/test_listener.py diff --git a/tests/audio/playlists_test.py b/tests/audio/test_playlists.py similarity index 100% rename from tests/audio/playlists_test.py rename to tests/audio/test_playlists.py diff --git a/tests/audio/scan_test.py b/tests/audio/test_scan.py similarity index 100% rename from tests/audio/scan_test.py rename to tests/audio/test_scan.py diff --git a/tests/backend/listener_test.py b/tests/backend/test_listener.py similarity index 100% rename from tests/backend/listener_test.py rename to tests/backend/test_listener.py diff --git a/tests/config/config_test.py b/tests/config/test_config.py similarity index 100% rename from tests/config/config_test.py rename to tests/config/test_config.py diff --git a/tests/config/schemas_test.py b/tests/config/test_schemas.py similarity index 100% rename from tests/config/schemas_test.py rename to tests/config/test_schemas.py diff --git a/tests/config/types_test.py b/tests/config/test_types.py similarity index 100% rename from tests/config/types_test.py rename to tests/config/test_types.py diff --git a/tests/config/validator_tests.py b/tests/config/test_validator.py similarity index 100% rename from tests/config/validator_tests.py rename to tests/config/test_validator.py diff --git a/tests/core/actor_test.py b/tests/core/test_actor.py similarity index 100% rename from tests/core/actor_test.py rename to tests/core/test_actor.py diff --git a/tests/core/events_test.py b/tests/core/test_events.py similarity index 100% rename from tests/core/events_test.py rename to tests/core/test_events.py diff --git a/tests/core/library_test.py b/tests/core/test_library.py similarity index 100% rename from tests/core/library_test.py rename to tests/core/test_library.py diff --git a/tests/core/listener_test.py b/tests/core/test_listener.py similarity index 100% rename from tests/core/listener_test.py rename to tests/core/test_listener.py diff --git a/tests/core/playback_test.py b/tests/core/test_playback.py similarity index 100% rename from tests/core/playback_test.py rename to tests/core/test_playback.py diff --git a/tests/core/playlists_test.py b/tests/core/test_playlists.py similarity index 100% rename from tests/core/playlists_test.py rename to tests/core/test_playlists.py diff --git a/tests/core/tracklist_test.py b/tests/core/test_tracklist.py similarity index 100% rename from tests/core/tracklist_test.py rename to tests/core/test_tracklist.py diff --git a/tests/http/events_test.py b/tests/http/test_events.py similarity index 100% rename from tests/http/events_test.py rename to tests/http/test_events.py diff --git a/tests/local/events_test.py b/tests/local/test_events.py similarity index 100% rename from tests/local/events_test.py rename to tests/local/test_events.py diff --git a/tests/local/library_test.py b/tests/local/test_library.py similarity index 100% rename from tests/local/library_test.py rename to tests/local/test_library.py diff --git a/tests/local/playback_test.py b/tests/local/test_playback.py similarity index 100% rename from tests/local/playback_test.py rename to tests/local/test_playback.py diff --git a/tests/local/playlists_test.py b/tests/local/test_playlists.py similarity index 100% rename from tests/local/playlists_test.py rename to tests/local/test_playlists.py diff --git a/tests/local/tracklist_test.py b/tests/local/test_tracklist.py similarity index 100% rename from tests/local/tracklist_test.py rename to tests/local/test_tracklist.py diff --git a/tests/local/translator_test.py b/tests/local/test_translator.py similarity index 100% rename from tests/local/translator_test.py rename to tests/local/test_translator.py diff --git a/tests/mpd/protocol/audio_output_test.py b/tests/mpd/protocol/test_audio_output.py similarity index 100% rename from tests/mpd/protocol/audio_output_test.py rename to tests/mpd/protocol/test_audio_output.py diff --git a/tests/mpd/protocol/authentication_test.py b/tests/mpd/protocol/test_authentication.py similarity index 100% rename from tests/mpd/protocol/authentication_test.py rename to tests/mpd/protocol/test_authentication.py diff --git a/tests/mpd/protocol/channels_test.py b/tests/mpd/protocol/test_channels.py similarity index 100% rename from tests/mpd/protocol/channels_test.py rename to tests/mpd/protocol/test_channels.py diff --git a/tests/mpd/protocol/command_list_test.py b/tests/mpd/protocol/test_command_list.py similarity index 100% rename from tests/mpd/protocol/command_list_test.py rename to tests/mpd/protocol/test_command_list.py diff --git a/tests/mpd/protocol/connection_test.py b/tests/mpd/protocol/test_connection.py similarity index 100% rename from tests/mpd/protocol/connection_test.py rename to tests/mpd/protocol/test_connection.py diff --git a/tests/mpd/protocol/current_playlist_test.py b/tests/mpd/protocol/test_current_playlist.py similarity index 100% rename from tests/mpd/protocol/current_playlist_test.py rename to tests/mpd/protocol/test_current_playlist.py diff --git a/tests/mpd/protocol/idle_test.py b/tests/mpd/protocol/test_idle.py similarity index 100% rename from tests/mpd/protocol/idle_test.py rename to tests/mpd/protocol/test_idle.py diff --git a/tests/mpd/protocol/music_db_test.py b/tests/mpd/protocol/test_music_db.py similarity index 100% rename from tests/mpd/protocol/music_db_test.py rename to tests/mpd/protocol/test_music_db.py diff --git a/tests/mpd/protocol/playback_test.py b/tests/mpd/protocol/test_playback.py similarity index 100% rename from tests/mpd/protocol/playback_test.py rename to tests/mpd/protocol/test_playback.py diff --git a/tests/mpd/protocol/reflection_test.py b/tests/mpd/protocol/test_reflection.py similarity index 100% rename from tests/mpd/protocol/reflection_test.py rename to tests/mpd/protocol/test_reflection.py diff --git a/tests/mpd/protocol/regression_test.py b/tests/mpd/protocol/test_regression.py similarity index 100% rename from tests/mpd/protocol/regression_test.py rename to tests/mpd/protocol/test_regression.py diff --git a/tests/mpd/protocol/status_test.py b/tests/mpd/protocol/test_status.py similarity index 100% rename from tests/mpd/protocol/status_test.py rename to tests/mpd/protocol/test_status.py diff --git a/tests/mpd/protocol/stickers_test.py b/tests/mpd/protocol/test_stickers.py similarity index 100% rename from tests/mpd/protocol/stickers_test.py rename to tests/mpd/protocol/test_stickers.py diff --git a/tests/mpd/protocol/stored_playlists_test.py b/tests/mpd/protocol/test_stored_playlists.py similarity index 100% rename from tests/mpd/protocol/stored_playlists_test.py rename to tests/mpd/protocol/test_stored_playlists.py diff --git a/tests/mpd/dispatcher_test.py b/tests/mpd/test_dispatcher.py similarity index 100% rename from tests/mpd/dispatcher_test.py rename to tests/mpd/test_dispatcher.py diff --git a/tests/mpd/exception_test.py b/tests/mpd/test_exceptions.py similarity index 100% rename from tests/mpd/exception_test.py rename to tests/mpd/test_exceptions.py diff --git a/tests/mpd/status_test.py b/tests/mpd/test_status.py similarity index 100% rename from tests/mpd/status_test.py rename to tests/mpd/test_status.py diff --git a/tests/mpd/translator_test.py b/tests/mpd/test_translator.py similarity index 100% rename from tests/mpd/translator_test.py rename to tests/mpd/test_translator.py diff --git a/tests/outputs/__init__.py b/tests/outputs/__init__.py deleted file mode 100644 index baffc488..00000000 --- a/tests/outputs/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/tests/commands_test.py b/tests/test_commands.py similarity index 100% rename from tests/commands_test.py rename to tests/test_commands.py diff --git a/tests/exceptions_test.py b/tests/test_exceptions.py similarity index 100% rename from tests/exceptions_test.py rename to tests/test_exceptions.py diff --git a/tests/ext_test.py b/tests/test_ext.py similarity index 100% rename from tests/ext_test.py rename to tests/test_ext.py diff --git a/tests/help_test.py b/tests/test_help.py similarity index 100% rename from tests/help_test.py rename to tests/test_help.py diff --git a/tests/models_test.py b/tests/test_models.py similarity index 100% rename from tests/models_test.py rename to tests/test_models.py diff --git a/tests/version_test.py b/tests/test_version.py similarity index 100% rename from tests/version_test.py rename to tests/test_version.py diff --git a/tests/utils/network/connection_test.py b/tests/utils/network/test_connection.py similarity index 100% rename from tests/utils/network/connection_test.py rename to tests/utils/network/test_connection.py diff --git a/tests/utils/network/lineprotocol_test.py b/tests/utils/network/test_lineprotocol.py similarity index 100% rename from tests/utils/network/lineprotocol_test.py rename to tests/utils/network/test_lineprotocol.py diff --git a/tests/utils/network/server_test.py b/tests/utils/network/test_server.py similarity index 100% rename from tests/utils/network/server_test.py rename to tests/utils/network/test_server.py diff --git a/tests/utils/network/utils_test.py b/tests/utils/network/test_utils.py similarity index 100% rename from tests/utils/network/utils_test.py rename to tests/utils/network/test_utils.py diff --git a/tests/utils/deps_test.py b/tests/utils/test_deps.py similarity index 100% rename from tests/utils/deps_test.py rename to tests/utils/test_deps.py diff --git a/tests/utils/encoding_test.py b/tests/utils/test_encoding.py similarity index 100% rename from tests/utils/encoding_test.py rename to tests/utils/test_encoding.py diff --git a/tests/utils/jsonrpc_test.py b/tests/utils/test_jsonrpc.py similarity index 100% rename from tests/utils/jsonrpc_test.py rename to tests/utils/test_jsonrpc.py diff --git a/tests/utils/path_test.py b/tests/utils/test_path.py similarity index 100% rename from tests/utils/path_test.py rename to tests/utils/test_path.py