Browse Source

Remove tests.test_datastructures (location is tests.utilitites.test_datastructures)

Ask Solem 12 years ago
parent
commit
26e199fb44
2 changed files with 8 additions and 24 deletions
  1. 0 24
      celery/tests/test_datastructures.py
  2. 8 0
      celery/tests/utilities/test_datastructures.py

+ 0 - 24
celery/tests/test_datastructures.py

@@ -1,24 +0,0 @@
-"""
-Tests of celery.datastructures.
-"""
-from __future__ import absolute_import
-
-
-import unittest
-
-
-class TestConfigurationView(unittest.TestCase):
-    """
-    Tests of celery.datastructures.ConfigurationView
-    """
-    def test_is_mapping(self):
-        """ConfigurationView should be a collections.Mapping"""
-        from celery.datastructures import ConfigurationView
-        from collections import Mapping
-        self.assertTrue(issubclass(ConfigurationView, Mapping))
-
-    def test_is_mutable_mapping(self):
-        """ConfigurationView should be a collections.MutableMapping"""
-        from celery.datastructures import ConfigurationView
-        from collections import MutableMapping
-        self.assertTrue(issubclass(ConfigurationView, MutableMapping))

+ 8 - 0
celery/tests/utilities/test_datastructures.py

@@ -92,6 +92,14 @@ class test_ConfigurationView(Case):
         self.assertItemsEqual(self.view.keys(), expected.keys())
         self.assertItemsEqual(self.view.values(), expected.values())
 
+    def test_isa_mapping(self):
+        from collections import Mapping
+        self.assertTrue(issubclass(ConfigurationView, Mapping))
+
+    def test_isa_mutable_mapping(self):
+        from collections import MutableMapping
+        self.assertTrue(issubclass(ConfigurationView, MutableMapping))
+
 
 class test_ExceptionInfo(Case):