bad commit :(

This commit is contained in:
Loki 2011-05-14 00:12:35 +03:00
parent 68c53405e7
commit 0a5e8e0103
2 changed files with 0 additions and 58 deletions

View file

@ -1,22 +0,0 @@
package org.mage.test.serverside.cards.abilities;
import mage.Constants;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestBase;
public class HellbentTest extends CardTestBase {
@Test
public void testWithCardsInHand() {
addCard(Constants.Zone.BATTLEFIELD, computerA, "Rakdos Pit Dragon", 1);
removeAllCardsFromLibrary(computerA);
addCard(Constants.Zone.LIBRARY, computerA, "Mountain", 10);
addCard(Constants.Zone.BATTLEFIELD, computerB, "Plains", 2);
addCard(Constants.Zone.HAND, computerB, "Plains", 2);
removeAllCardsFromLibrary(computerB);
addCard(Constants.Zone.LIBRARY, computerB, "Plains", 10);
}
}