当前位置: 首页>>代码示例>>Python>>正文


Python Fake.execute方法代码示例

本文整理汇总了Python中fudge.Fake.execute方法的典型用法代码示例。如果您正苦于以下问题:Python Fake.execute方法的具体用法?Python Fake.execute怎么用?Python Fake.execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在fudge.Fake的用法示例。


在下文中一共展示了Fake.execute方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_too_many_args

# 需要导入模块: from fudge import Fake [as 别名]
# 或者: from fudge.Fake import execute [as 别名]
 def test_too_many_args(self):
     db = Fake("db").expects("execute").with_args(bind={'one':1})
     db.execute("select foozilate()", bind={'one':1}) # unexpected statement arg
开发者ID:buddylindsey,项目名称:fudge,代码行数:5,代码来源:test_fudge.py

示例2: test_contains_str

# 需要导入模块: from fudge import Fake [as 别名]
# 或者: from fudge.Fake import execute [as 别名]
 def test_contains_str(self):
     db = Fake("db").expects("execute").with_args(arg.contains("table foo"))
     db.execute("select into table foo;")
     db.execute("select * from table foo where bar = 1")
     fudge.verify()
开发者ID:buddylindsey,项目名称:fudge,代码行数:7,代码来源:test_inspector.py

示例3: test_contains_fail

# 需要导入模块: from fudge import Fake [as 别名]
# 或者: from fudge.Fake import execute [as 别名]
 def test_contains_fail(self):
     db = Fake("db").expects("execute").with_args(arg.contains("table foo"))
     db.execute("select into table notyourmama;")
     fudge.verify()
开发者ID:buddylindsey,项目名称:fudge,代码行数:6,代码来源:test_inspector.py

示例4: test_endswith_ok_uni

# 需要导入模块: from fudge import Fake [as 别名]
# 或者: from fudge.Fake import execute [as 别名]
 def test_endswith_ok_uni(self):
     db = Fake("db").expects("execute").with_args(arg.endswith(u"Ivan Krsti\u0107"))
     db.execute(u"select Ivan Krsti\u0107")
开发者ID:buddylindsey,项目名称:fudge,代码行数:5,代码来源:test_inspector.py

示例5: test_endswith_ok

# 需要导入模块: from fudge import Fake [as 别名]
# 或者: from fudge.Fake import execute [as 别名]
 def test_endswith_ok(self):
     db = Fake("db").expects("execute").with_args(arg.endswith("values (1,2,3,4)"))
     db.execute("insert into foo values (1,2,3,4)")
开发者ID:buddylindsey,项目名称:fudge,代码行数:5,代码来源:test_inspector.py

示例6: test_any_value

# 需要导入模块: from fudge import Fake [as 别名]
# 或者: from fudge.Fake import execute [as 别名]
 def test_any_value(self):
     db = Fake("db").expects("execute").with_args(arg.any())
     db.execute("delete from foo where 1")
开发者ID:buddylindsey,项目名称:fudge,代码行数:5,代码来源:test_inspector.py

示例7: test_startswith_ok_uni

# 需要导入模块: from fudge import Fake [as 别名]
# 或者: from fudge.Fake import execute [as 别名]
 def test_startswith_ok_uni(self):
     db = Fake("db").expects("execute").with_args(arg.startswith(u"Ivan_Krsti\u0107"))
     db.execute(u"Ivan_Krsti\u0107(); foo();")
开发者ID:buddylindsey,项目名称:fudge,代码行数:5,代码来源:test_inspector.py

示例8: test_startswith_fail

# 需要导入模块: from fudge import Fake [as 别名]
# 或者: from fudge.Fake import execute [as 别名]
 def test_startswith_fail(self):
     db = Fake("db").expects("execute").with_args(arg.startswith("insert into"))
     db.execute("select from")
开发者ID:buddylindsey,项目名称:fudge,代码行数:5,代码来源:test_inspector.py


注:本文中的fudge.Fake.execute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。