X Tutup
Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand Down Expand Up @@ -78,6 +79,7 @@ public void testExtension() throws IOException {
assertTrue(content.contains("Pattern:'*.ext'"));
}

@Ignore("excused in pull/34")
@Test
@RunAsClient
public void testRoot() throws IOException {
Expand All @@ -93,6 +95,7 @@ public void testRoot() throws IOException {
assertTrue(content.contains("Pattern:''"));
}

@Ignore("excused in pull/34")
@Test
@RunAsClient
public void testDefault() throws IOException {
Expand Down
X Tutup