Feature 11014: add option to reset values for upgrade operation on helm charts
[osm/N2VC.git] / tests / unit / test_placement.py
diff --git a/tests/unit/test_placement.py b/tests/unit/test_placement.py
deleted file mode 100644 (file)
index a78a28d..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# Test our placement helper
-#
-
-import unittest
-
-from juju import placement
-from juju.client import client
-
-class TestPlacement(unittest.TestCase):
-
-    def test_parse_both_specified(self):
-        res = placement.parse("foo:bar")
-        self.assertEqual(res[0].scope, "foo")
-        self.assertEqual(res[0].directive, "bar")
-
-    def test_parse_machine(self):
-        res = placement.parse("22")
-        self.assertEqual(res[0].scope, "#")
-        self.assertEqual(res[0].directive, "22")