- Added a test for Tormented Soul being unblockable. Passed.

This commit is contained in:
jeffwadsworth 2012-07-05 20:36:29 -05:00
parent c8c6cdaa0e
commit f87ea46641

View file

@ -226,4 +226,22 @@ public class AttackBlockRestrictionsTest extends CardTestPlayerBase {
assertCounterCount(playerA, CounterType.POISON, 1);
}
@Test
public void testUnblockableTormentedSoul() {
addCard(Constants.Zone.BATTLEFIELD, playerB, "Tormented Soul");
addCard(Constants.Zone.BATTLEFIELD, playerA, "Memnite");
attack(2, playerB, "Tormented Soul");
block(2, playerA, "Tormented Soul", "Memnite");
setStopAt(2, Constants.PhaseStep.END_TURN);
execute();
assertPermanentCount(playerA, "Memnite", 1);
assertPermanentCount(playerB, "Tormented Soul", 1);
assertLife(playerA, 19);
}
}