コード例 #1
0
ファイル: configtest.py プロジェクト: sblaes/DbMigrations
 def testPutAndGet(self):
     conf = Config()
     conf.put('hello', 'world')
     self.assertTrue(conf.has('hello'))
     self.assertEqual('world', conf.get('hello'))