@Test( expectedExceptions = SpecException.class )
public void failsOnStupidTransform() {
List<JoltTransform> badSpec = Lists.newArrayList();
// Stupid JoltTransform that implements the base interface, and not one of the useful ones
badSpec.add( new JoltTransform() {} );
new Chainr( badSpec );
}