update cabal therapy complying CR 708.4a

This commit is contained in:
igoudt 2017-08-08 17:37:12 +02:00
parent 38a80207cc
commit 63c3689d47
2 changed files with 27 additions and 5 deletions

View file

@ -131,4 +131,19 @@ public class DiscardTest extends CardTestPlayerBase {
assertLife(playerB, 18);
}
@Test
public void testCabalTherapyAfterMathCard(){
addCard(Zone.HAND, playerA, "Cabal Therapy", 1);
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 10);
addCard(Zone.HAND, playerB, "Driven // Despair");
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Cabal Therapy", playerB);
setChoice(playerA, "Driven");
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
execute();
assertHandCount(playerB, "Driven // Despair", 0);
}
}