configurationengine/source/cone/confml/tests/unittest_mapping.py
changeset 3 e7e0ae78773e
parent 0 2e8eeb919028
--- a/configurationengine/source/cone/confml/tests/unittest_mapping.py	Fri Mar 12 08:30:17 2010 +0200
+++ b/configurationengine/source/cone/confml/tests/unittest_mapping.py	Tue Aug 10 14:29:28 2010 +0300
@@ -20,7 +20,6 @@
 import sys
 import os
 import shutil
-import __init__
 
 from cone.public import api, exceptions
 from cone.confml import model, mapping
@@ -84,7 +83,7 @@
 
     def test_map_carbon_setting_with_data(self):
         mapper = model.get_mapper('carbon')
-        c1 = model.ConfmlSetting("test")
+        c1 = model.ConfmlSetting("test", name="test")
         c2 = mapper.map_object(c1)
         self.assertTrue(isinstance(c2, carbonmodel.CarbonSetting))
         self.assertEquals(c2.name, "test")
@@ -92,7 +91,7 @@
 
     def test_map_carbon_setting_with_desc(self):
         mapper = model.get_mapper('carbon')
-        c1 = model.ConfmlSetting("test")
+        c1 = model.ConfmlSetting("test", name="test")
         c1.desc = 'Testing man'
         c2 = mapper.map_object(c1)
         self.assertTrue(isinstance(c2, carbonmodel.CarbonSetting))
@@ -102,7 +101,7 @@
         
     def test_map_carbon_int_setting_with_data(self):
         mapper = model.get_mapper('carbon')
-        c1 = model.ConfmlIntSetting("test")
+        c1 = model.ConfmlIntSetting("test", name="test")
         c2 = mapper.map_object(c1)
         self.assertTrue(isinstance(c2, carbonmodel.CarbonIntSetting))
         self.assertEquals(c2.name, "test")
@@ -110,7 +109,7 @@
 
     def test_map_carbon_setting_with_data(self):
         mapper = model.get_mapper('carbon')
-        c1 = model.ConfmlBooleanSetting("test")
+        c1 = model.ConfmlBooleanSetting("test", name="test")
         c2 = mapper.map_object(c1)
         self.assertTrue(isinstance(c2, carbonmodel.CarbonBooleanSetting))
         self.assertEquals(c2.name, "test")
@@ -118,7 +117,7 @@
 
     def test_map_carbon_setting_with_data(self):
         mapper = model.get_mapper('carbon')
-        c1 = model.ConfmlSelectionSetting("test")
+        c1 = model.ConfmlSelectionSetting("test", name="test")
         c2 = mapper.map_object(c1)
         self.assertTrue(isinstance(c2, carbonmodel.CarbonSelectionSetting))
         self.assertEquals(c2.name, "test")
@@ -126,7 +125,7 @@
 
     def test_map_carbon_feature(self):
         mapper = model.get_mapper('carbon')
-        c1 = model.ConfmlFeature("test")
+        c1 = model.ConfmlFeature("test", name="test")
         c2 = mapper.map_object(c1)
         self.assertTrue(isinstance(c2, carbonmodel.CarbonFeature))
         self.assertEquals(c2.name, "test")