Description: Disable code not included in Debian hamcrest package
 libhamcrest-java package is not including hamcrest-unit-test.jar
 For this reason, I had to disable some tests including features
 provided by that .jar.
Author: Miguel Landaeta <miguel@miguel.cc>
Forwarded: no
Last-Update: 2013-09-29

--- jmock2-2.7~snapshot201309170925+dfsg.orig/test/org/jmock/test/unit/lib/CurrentStateMatcherTests.java
+++ jmock2-2.7~snapshot201309170925+dfsg/test/org/jmock/test/unit/lib/CurrentStateMatcherTests.java
@@ -4,13 +4,16 @@ import static org.hamcrest.StringDescrip
 import static org.jmock.lib.CurrentStateMatcher.isCurrently;
 import static org.jmock.lib.CurrentStateMatcher.isNotCurrently;
 
-import org.hamcrest.AbstractMatcherTest;
+// hamcrest-unit-test.jar is not available yet on Debian, see #724950
+//import org.hamcrest.AbstractMatcherTest;
 import org.hamcrest.Matcher;
 import org.jmock.States;
 import org.jmock.internal.StateMachine;
 
 
-public class CurrentStateMatcherTests extends AbstractMatcherTest {
+//public class CurrentStateMatcherTests extends AbstractMatcherTest {
+public class CurrentStateMatcherTests {
+/*
     States stateMachine = new StateMachine("stateMachine");
     Matcher<States> isCurrentlyS = isCurrently("S");
     Matcher<States> isNotCurrentlyS = isNotCurrently("S");
@@ -57,4 +60,5 @@ public class CurrentStateMatcherTests ex
     protected Matcher<?> createMatcher() {
         return isCurrentlyS;
     }
+*/
 }
