From a3244a2531ee1f2b63dea8016ca5130ad41fed5d Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Wed, 10 Jun 2015 11:50:14 -0700 Subject: [PATCH] Rename tests to be more descriptive --- tests/{test_dotnet_domain.py => test_domains.py} | 1 - tests/{test_full.py => test_integration.py} | 0 tests/{test_dotnet_objects.py => test_objects.py} | 2 -- 3 files changed, 3 deletions(-) rename tests/{test_dotnet_domain.py => test_domains.py} (99%) rename tests/{test_full.py => test_integration.py} (100%) rename tests/{test_dotnet_objects.py => test_objects.py} (99%) diff --git a/tests/test_dotnet_domain.py b/tests/test_domains.py similarity index 99% rename from tests/test_dotnet_domain.py rename to tests/test_domains.py index 6feccab..88ef48b 100644 --- a/tests/test_dotnet_domain.py +++ b/tests/test_domains.py @@ -1,7 +1,6 @@ '''Test .NET autoapi domain''' import unittest -import time from contextlib import nested from mock import patch diff --git a/tests/test_full.py b/tests/test_integration.py similarity index 100% rename from tests/test_full.py rename to tests/test_integration.py diff --git a/tests/test_dotnet_objects.py b/tests/test_objects.py similarity index 99% rename from tests/test_dotnet_objects.py rename to tests/test_objects.py index f2a1052..32cb556 100644 --- a/tests/test_dotnet_objects.py +++ b/tests/test_objects.py @@ -1,7 +1,6 @@ '''Test .NET autoapi objects''' import unittest -import time from autoapi.domains import dotnet @@ -65,7 +64,6 @@ class NamespaceTests(unittest.TestCase): self.assertEqual(obj.ref_type, 'event') self.assertEqual(obj.ref_directive, 'event') - def test_names(self): '''Test names of objects''' obj = dotnet.DotNetNamespace({'id': 'Foo.Bar'})