private Spec readSpec(String specText) throws IOException {
return new SpecReader(EMPTY_PROPERTIES, NO_BROWSER).read(specText);
}
private Spec readSpec(String specText, String contextPath) throws IOException {
return new SpecReader(EMPTY_PROPERTIES, NO_BROWSER).read(specText, contextPath);
}