}
@Test(expected = org.jruby.exceptions.RaiseException.class)
public void shouldRaiseCucumberPendingWhenAnnotatedWithPending() throws Throwable {
Method dontExecuteMe = SomethingWithPending.class.getDeclaredMethod("dontExecuteMe");
MethodInvoker mi = new MethodInvoker(new JRubyExceptionFactory());
mi.invoke(dontExecuteMe, new SomethingWithPending(), new Object[0]);
}