Skip to content

Commit a6c10e4

Browse files
authored
Update test_adaptive_cooperator.py
1 parent 36dc417 commit a6c10e4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

axelrod/tests/strategies/test_adaptive_cooperator.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ def test_strategy_alternator(self):
2626
actions = [(C, C), (C, D), (D, C), (D, D), (D, C)]
2727
self.versus_test(axelrod.Alternator(), expected_actions=actions)
2828

29+
def test_strategy_tit4tat(self):
30+
actions = [(C, C), (C, C), (C, C), (C, C), (C, C)]
31+
self.versus_test(axelrod.TitForTat(), expected_actions=actions)

0 commit comments

Comments
 (0)