本文整理汇总了Python中pump.pump.Pump.out_filename方法的典型用法代码示例。如果您正苦于以下问题:Python Pump.out_filename方法的具体用法?Python Pump.out_filename怎么用?Python Pump.out_filename使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pump.pump.Pump
的用法示例。
在下文中一共展示了Pump.out_filename方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_filter
# 需要导入模块: from pump.pump import Pump [as 别名]
# 或者: from pump.pump.Pump import out_filename [as 别名]
def test_get_filter(self):
p = Pump("data/building_def.json")
p.out_filename = "data/buildings_filtered.txt"
n_rows = p.get()
self.assertEqual(2, n_rows)
示例2: test_no_update_file
# 需要导入模块: from pump.pump import Pump [as 别名]
# 或者: from pump.pump.Pump import out_filename [as 别名]
def test_no_update_file(self):
p = Pump()
p.out_filename = 'data/no_update_file.txt'
with self.assertRaises(IOError):
p.update()
示例3: test_pump_update
# 需要导入模块: from pump.pump import Pump [as 别名]
# 或者: from pump.pump.Pump import out_filename [as 别名]
def test_pump_update(self):
p = Pump("data/building_def.json")
p.out_filename = "data/pump_data.txt"
[add, sub] = p.update()
self.assertEqual(2, len(add))
self.assertEqual(2, len(sub))