本文整理汇总了Python中inc.Commons.Commons.list_greater方法的典型用法代码示例。如果您正苦于以下问题:Python Commons.list_greater方法的具体用法?Python Commons.list_greater怎么用?Python Commons.list_greater使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类inc.Commons.Commons
的用法示例。
在下文中一共展示了Commons.list_greater方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_list_greater
# 需要导入模块: from inc.Commons import Commons [as 别名]
# 或者: from inc.Commons.Commons import list_greater [as 别名]
def test_list_greater(self):
try:
Commons.list_greater([1]*3, [1]*5)
assert False, "Function should throw an error if given 2 lists of unequal length."
except ValueError:
pass
assert Commons.list_greater([5, 2, 1], [4, 2, 1])
assert not Commons.list_greater([4, 2, 1], [5, 2, 1])
assert Commons.list_greater([5, 2, 1], [4, 7, 9])
assert not Commons.list_greater([4, 7, 9], [5, 2, 1])
assert Commons.list_greater([1, 0, 0], [0, 9, 9])
assert not Commons.list_greater([0, 9, 9], [1, 0, 0])
assert Commons.list_greater([5, 3, 6], [5, 2, 6])
assert not Commons.list_greater([5, 2, 6], [5, 3, 6])
assert Commons.list_greater([5, 3, 6], [5, 3, 5])
assert not Commons.list_greater([5, 3, 5], [5, 3, 6])
assert Commons.list_greater([1, 2, 3, 4, 5, 6, 7, 8, 10], [1, 2, 3, 4, 5, 6, 7, 8, 9])
assert not Commons.list_greater([1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 2, 3, 4, 5, 6, 7, 8, 10])
assert Commons.list_greater([1], [1]) is None
assert Commons.list_greater([5, 2, 1], [5, 2, 1]) is None
assert Commons.list_greater([1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 2, 3, 4, 5, 6, 7, 8, 9]) is None