예제 #1
0
파일: samba3.py 프로젝트: 0x24bin/winexe-1
 def test_set_param_string(self):
     file = ParamFile()
     file.add_section("global")
     file.set_string("data", "bar")
     self.assertEquals("bar", file.get_string("data"))
예제 #2
0
파일: samba3.py 프로젝트: 0x24bin/winexe-1
 def test_get_section(self):
     file = ParamFile()
     self.assertEquals(None, file.get_section("unknown"))
     self.assertRaises(KeyError, lambda: file["unknown"])
예제 #3
0
파일: samba3.py 프로젝트: 0x24bin/winexe-1
 def test_add_section(self):
     file = ParamFile()
     file.add_section("global")
     self.assertTrue(file["global"] is not None)
예제 #4
0
 def test_get_section(self):
     file = ParamFile()
     self.assertEquals(None, file.get_section("unknown"))
     self.assertRaises(KeyError, lambda: file["unknown"])
예제 #5
0
 def test_set_param_string(self):
     file = ParamFile()
     file.add_section("global")
     file.set_string("data", "bar")
     self.assertEquals("bar", file.get_string("data"))
예제 #6
0
 def test_add_section(self):
     file = ParamFile()
     file.add_section("global")
     self.assertTrue(file["global"] is not None)
예제 #7
0
 def test_init(self):
     file = ParamFile()
     self.assertTrue(file is not None)