@@ -2032,39 +2032,3 @@ def test_strategy(self):
20322032 self .versus_test (axelrod .Random (0.5 ), expected_actions = actions , seed = 7 )
20332033
20342034
2035- class TestSeconodByDowning (TestPlayer ):
2036-
2037- name = "Second by Downing"
2038- player = axelrod .SecondByDowning
2039- expected_classifier = {
2040- "memory_depth" : float ("inf" ),
2041- "stochastic" : False ,
2042- "makes_use_of" : set (),
2043- "long_run_time" : False ,
2044- "inspects_source" : False ,
2045- "manipulates_source" : False ,
2046- "manipulates_state" : False ,
2047- }
2048-
2049- def test_strategy (self ):
2050- actions = [(C , C ), (C , C ), (C , C )]
2051- self .versus_test (axelrod .Cooperator (), expected_actions = actions )
2052-
2053- actions = [(C , D ), (C , D ), (D , D )]
2054- self .versus_test (axelrod .Defector (), expected_actions = actions )
2055-
2056- opponent = axelrod .MockPlayer (actions = [D , C , C ])
2057- actions = [(C , D ), (C , C ), (C , C ), (C , D )]
2058- self .versus_test (opponent , expected_actions = actions )
2059-
2060- opponent = axelrod .MockPlayer (actions = [D , D , C ])
2061- actions = [(C , D ), (C , D ), (D , C ), (D , D )]
2062- self .versus_test (opponent , expected_actions = actions )
2063-
2064- opponent = axelrod .MockPlayer (actions = [C , C , D , D , C , C ])
2065- actions = [(C , C ), (C , C ), (C , D ), (C , D ), (D , C ), (D , C ), (D , C )]
2066- self .versus_test (opponent , expected_actions = actions )
2067-
2068- opponent = axelrod .MockPlayer (actions = [C , C , C , C , D , D ])
2069- actions = [(C , C ), (C , C ), (C , C ), (C , C ), (C , D ), (C , D ), (C , C )]
2070- self .versus_test (opponent , expected_actions = actions )
0 commit comments