Skip to content

Commit

Permalink
Tests ignored on Wildfly for now (see ocpsoft#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
chkal committed May 29, 2015
1 parent d3ce76c commit d4c9c20
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.ocpsoft.rewrite.category.IgnoreForWildfly;
import org.ocpsoft.rewrite.config.ConfigurationProvider;
import org.ocpsoft.rewrite.test.HttpAction;
import org.ocpsoft.rewrite.test.RewriteTest;
Expand Down Expand Up @@ -73,6 +75,7 @@ public void testSimpleLessFileRendering() throws Exception
}

@Test
@Category(IgnoreForWildfly.class)
public void testNotExistingLessFile() throws Exception
{
HttpAction<HttpGet> action = get("/not-existing.css");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public void testCssFileCompression() throws Exception
}

@Test
@Category(IgnoreForWildfly.class)
public void testNotExistingSourceFile() throws Exception
{
HttpAction<HttpGet> action = get("/not-existing.css");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public void testJavaScriptCompression() throws Exception
}

@Test
@Category(IgnoreForWildfly.class)
public void testNotExistingSourceFile() throws Exception
{
HttpAction<HttpGet> action = get("/not-existing.js");
Expand Down

0 comments on commit d4c9c20

Please sign in to comment.