本文整理汇总了Python中txclib.project.Project._extension_for方法的典型用法代码示例。如果您正苦于以下问题:Python Project._extension_for方法的具体用法?Python Project._extension_for怎么用?Python Project._extension_for使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类txclib.project.Project
的用法示例。
在下文中一共展示了Project._extension_for方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestFormats
# 需要导入模块: from txclib.project import Project [as 别名]
# 或者: from txclib.project.Project import _extension_for [as 别名]
class TestFormats(unittest.TestCase):
"""Tests for the supported formats."""
def setUp(self):
self.p = Project(init=False)
def test_extensions(self):
"""Test returning the correct extension for a format."""
sample_formats = {"PO": {"file-extensions": ".po, .pot"}, "QT": {"file-extensions": ".ts"}}
extensions = [".po", ".ts", ""]
with patch.object(self.p, "do_url_request") as mock:
mock.return_value = json.dumps(sample_formats)
for (type_, ext) in zip(["PO", "QT", "NONE"], extensions):
extension = self.p._extension_for(type_)
self.assertEquals(extension, ext)
示例2: TestFormats
# 需要导入模块: from txclib.project import Project [as 别名]
# 或者: from txclib.project.Project import _extension_for [as 别名]
class TestFormats(unittest.TestCase):
"""Tests for the supported formats."""
def setUp(self):
self.p = Project(init=False)
def test_extensions(self):
"""Test returning the correct extension for a format."""
sample_formats = {
'PO': {'file-extensions': '.po, .pot'},
'QT': {'file-extensions': '.ts'},
}
extensions = ['.po', '.ts', '', ]
with patch.object(self.p, "do_url_request") as mock:
mock.return_value = json.dumps(sample_formats), "utf-8"
for (type_, ext) in zip(['PO', 'QT', 'NONE', ], extensions):
extension = self.p._extension_for(type_)
self.assertEqual(extension, ext)