本文整理汇总了Python中lancelot.Spec.tolerance方法的典型用法代码示例。如果您正苦于以下问题:Python Spec.tolerance方法的具体用法?Python Spec.tolerance怎么用?Python Spec.tolerance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lancelot.Spec
的用法示例。
在下文中一共展示了Spec.tolerance方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: floatvalue_behaviour
# 需要导入模块: from lancelot import Spec [as 别名]
# 或者: from lancelot.Spec import tolerance [as 别名]
def floatvalue_behaviour():
''' FloatValue comparator should compare objects with tolerance for FPA '''
spec = Spec(FloatValue(1.1))
spec.tolerance().should_be(0.01)
spec.compares_to(1.1).should_be(True)
spec.description().should_be('within 0.01 of 1.1')
spec.compares_to(1.11).should_be(True)
spec.compares_to(1.12).should_be(False)
spec.compares_to(1.2).should_be(False)
spec.compares_to(1.09).should_be(True)
spec.compares_to(1.08).should_be(False)
spec.compares_to(1.0).should_be(False)
spec = Spec(FloatValue(1.1, 0.05))
spec.tolerance().should_be(0.05)
spec.description().should_be('within 0.05 of 1.1')
spec.compares_to(1.1).should_be(True)
spec.compares_to(1.11).should_be(True)
spec.compares_to(1.12).should_be(True)
spec.compares_to(1.2).should_be(False)
spec.compares_to(1.09).should_be(True)
spec.compares_to(1.08).should_be(True)
spec.compares_to(1.0).should_be(False)
spec = Spec(FloatValue(1.11))
spec.tolerance().should_be(0.001)
spec.description().should_be('within 0.001 of 1.11')
spec = Spec(FloatValue(1.99))
spec.tolerance().should_be(0.001)
spec = Spec(FloatValue(2))
spec.tolerance().should_be(0.1)