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


Python Foo.check_values方法代码示例

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


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

示例1: test_roundtrip_check_values

# 需要导入模块: from bindertest.tabledefs import Foo [as 别名]
# 或者: from bindertest.tabledefs.Foo import check_values [as 别名]
 def test_roundtrip_check_values(self):
     conn = connect()
     foo1 = Foo.new(foo_id=1, i1=101, s1="alpha", d1=datetime.date(2006, 6, 12))
     conn.insert(Foo, foo1)
     foo_list = conn.select(Foo)
     self.assertEquals([foo1], foo_list)
     foo2 = foo_list[0]
     Foo.check_values(foo2)
开发者ID:divtxt,项目名称:binder,代码行数:10,代码来源:test_insert.py

示例2: test_check_values

# 需要导入模块: from bindertest.tabledefs import Foo [as 别名]
# 或者: from bindertest.tabledefs.Foo import check_values [as 别名]
 def test_check_values(self):
     # defaults / None
     foo = Foo.new()
     auto_id = Foo.check_values(foo)
     self.assert_(auto_id)
     # given values / no None
     foo = {
         "foo_id": 42,
         "i1": 101,
         "s1": "alpha",
         "d1": date(2006,6,6),
     }
     auto_id = Foo.check_values(foo)
     self.assertFalse(auto_id)
     # bad value
     foo = Foo.new()
     foo["i1"] = "bar"
     try:
         Foo.check_values(foo)
     except TypeError, e:
         self.assertEquals("IntCol 'i1': int expected, got str", str(e))
开发者ID:divtxt,项目名称:binder,代码行数:23,代码来源:test_table.py

示例3: str

# 需要导入模块: from bindertest.tabledefs import Foo [as 别名]
# 或者: from bindertest.tabledefs.Foo import check_values [as 别名]
        auto_id = Foo.check_values(foo)
        self.assertFalse(auto_id)
        # bad value
        foo = Foo.new()
        foo["i1"] = "bar"
        try:
            Foo.check_values(foo)
        except TypeError, e:
            self.assertEquals("IntCol 'i1': int expected, got str", str(e))
        else:
            self.fail()
        # bad value
        foo = Foo.new()
        foo["s1"] = 1.1
        try:
            Foo.check_values(foo)
        except TypeError, e:
            self.assertEquals("UnicodeCol 's1': unicode expected, got float", str(e))
        else:
            self.fail()
        # unknown columns ignored
        foo = Foo.new(s2=None)
        foo["s3"] = 1.2
        auto_id = Foo.check_values(foo)
        self.assert_(True, auto_id)

    def test_q(self):
        q = Foo.q
        # existing columns
        q_foo_id = Foo.q.foo_id
        q_i1 = Foo.q.i1
开发者ID:divtxt,项目名称:binder,代码行数:33,代码来源:test_table.py


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