Skip to content

Commit 4d84857

Browse files
committed
Add stub for strategy test
1 parent 86b64e1 commit 4d84857

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_player.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ def test_init():
88
player = Player(strategy)
99
assert player.original_name == strategy
1010
assert player.original_function.restype == c_int
11+
12+
13+
def test_strategy():
14+
for strategy in all_strategies:
15+
player = Player(strategy)
16+
17+

0 commit comments

Comments
 (0)