forked from External/mage
- Test for Leyline of the Void used with the Morbid Ability.
This commit is contained in:
parent
300375aaac
commit
7efc86ed76
1 changed files with 20 additions and 0 deletions
|
|
@ -101,5 +101,25 @@ public class LeylineOfTheVoidTest extends CardTestPlayerBase {
|
|||
assertExileCount(playerA, 1);
|
||||
assertHandCount(playerA, 3);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testMorbidAbility() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 3);
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Leyline of the Void");
|
||||
addCard(Zone.HAND, playerA, "Murder");
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Deathreap Ritual");
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Memnite");
|
||||
|
||||
|
||||
castSpell(2, PhaseStep.POSTCOMBAT_MAIN, playerA, "Murder");
|
||||
setChoice(playerA, "Memnite");
|
||||
|
||||
setStopAt(2, PhaseStep.END_TURN);
|
||||
execute();
|
||||
|
||||
assertHandCount(playerB, 0);
|
||||
assertExileCount(playerB, 1);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue