From 4c19d8da3ddca373e4bff8274002d6d173f89870 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 22 May 2018 17:30:55 -0400 Subject: [PATCH] Rename some test modules test_hookcaller.py: We're not testing "method ordering" per say, we're testing the general internal API and behaviour of the `_HookCaller`; its method ordering is the majority of its purpose, yes. There's also a bunch of tests in this module that don't belong. test_invocations.py: You can't really test the "hookrelay" (unless you're trying to test `getattr`). Really this module is testing the different types of hook "invocations" in terms of API and execution behaviour. Resolves #100 --- testing/{test_method_ordering.py => test_hookcaller.py} | 0 testing/{test_hookrelay.py => test_invocations.py} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename testing/{test_method_ordering.py => test_hookcaller.py} (100%) rename testing/{test_hookrelay.py => test_invocations.py} (100%) diff --git a/testing/test_method_ordering.py b/testing/test_hookcaller.py similarity index 100% rename from testing/test_method_ordering.py rename to testing/test_hookcaller.py diff --git a/testing/test_hookrelay.py b/testing/test_invocations.py similarity index 100% rename from testing/test_hookrelay.py rename to testing/test_invocations.py