mirror of
https://github.com/correl/mage.git
synced 2025-03-07 20:53:18 -10:00
- Added a test for Tormented Soul being unblockable. Passed.
This commit is contained in:
parent
c8c6cdaa0e
commit
f87ea46641
1 changed files with 18 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue