Skip to content

Commit 5036664

Browse files
committed
-
1 parent a087bf9 commit 5036664

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

source_py3/test_python_toolbox/test_combi/test_misc.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ def test():
2222
assert combi.misc.get_short_factorial_string(float('inf'),
2323
minus_one=True) == '''float('inf')'''
2424

25-
def test_binomial_in_root_namespace():
26-
assert hasattr(combi, 'binomial')
27-
assert combi.binomial(7, 3) == 35
25+
def test_things_in_root_namespace():
26+
combi.binomial
27+
combi.Bag
28+
combi.OrderedBag
29+
combi.FrozenBag
30+
combi.FrozenOrderedBag

0 commit comments

Comments
 (0)