We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36dc417 commit a6c10e4Copy full SHA for a6c10e4
axelrod/tests/strategies/test_adaptive_cooperator.py
@@ -26,3 +26,6 @@ def test_strategy_alternator(self):
26
actions = [(C, C), (C, D), (D, C), (D, D), (D, C)]
27
self.versus_test(axelrod.Alternator(), expected_actions=actions)
28
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