當前位置: 首頁>>代碼示例>>Python>>正文


Python Config.write方法代碼示例

本文整理匯總了Python中kamaki.cli.config.Config.write方法的典型用法代碼示例。如果您正苦於以下問題:Python Config.write方法的具體用法?Python Config.write怎麽用?Python Config.write使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在kamaki.cli.config.Config的用法示例。


在下文中一共展示了Config.write方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_write

# 需要導入模塊: from kamaki.cli.config import Config [as 別名]
# 或者: from kamaki.cli.config.Config import write [as 別名]
 def test_write(self, stp):
     from kamaki.cli.config import Config
     _cnf = Config(path=self.f.name)
     exp = '%s%s' % (HEADER, 'rv')
     _cnf.write()
     self.f.seek(0)
     self.assertEqual(self.f.read(), exp)
     stp.assert_called_once_with()
     del _cnf
開發者ID:grnet,項目名稱:kamaki,代碼行數:11,代碼來源:test.py

示例2: test_write

# 需要導入模塊: from kamaki.cli.config import Config [as 別名]
# 或者: from kamaki.cli.config.Config import write [as 別名]
    def test_write(self):
        from kamaki.cli.config import Config, DEFAULTS
        _cnf = Config(path=self.f.name)

        exp = '%s[global]\n' % HEADER
        exp += ''.join([
            '%s = %s\n' % (k, v) for k, v in DEFAULTS['global'].items()])
        exp += '\n'

        _cnf.write()
        self.f.seek(0)
        self.assertEqual(self.f.read(), exp)

        del _cnf
        with NamedTemporaryFile() as f:
            f.write('\n'.join(self.config_file_content))
            f.flush()
            _cnf = Config(path=f.name)
            f.seek(0)
            self.assertEqual(f.read(), '\n'.join(self.config_file_content))
            _cnf.write()
            f.seek(0)
            file_contents = f.read()
            for line in self.config_file_content:
                self.assertTrue(line in file_contents)
            _cnf.set('sec', 'opt', 'val')
            _cnf.set('global', 'opt', 'val')
            _cnf.set('global', 'file_cli', 'val')
            _cnf.write()
            f.seek(0)
            file_contents = f.read()
            for line in ('file_cli = val\n', '[sec]\n', 'opt = val\n'):
                self.assertTrue(line in file_contents)
開發者ID:Erethon,項目名稱:kamaki,代碼行數:35,代碼來源:test.py


注:本文中的kamaki.cli.config.Config.write方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。