25 lines
582 B
Java
25 lines
582 B
Java
package com.samskivert.mustache.specs;
|
|
|
|
import java.util.Collection;
|
|
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Parameterized;
|
|
import org.junit.runners.Parameterized.Parameters;
|
|
|
|
@RunWith(Parameterized.class)
|
|
public class CustomSpecTest extends SpecTest {
|
|
|
|
public CustomSpecTest(Spec spec, String name) {
|
|
super(spec, name);
|
|
}
|
|
|
|
@Parameters(name = "{1}")
|
|
public static Collection<Object[]> data () {
|
|
String[] groups = new String[] {
|
|
"partials"
|
|
};
|
|
return SpecTest.data("/custom/specs/", groups);
|
|
}
|
|
|
|
}
|