Revert "Ignore broken tests until fixed"

This reverts commit 1b5c04a0aec37fb3ecb4910764982eb0f168887f.
This commit is contained in:
Spencer Gibb
2016-08-29 15:34:09 -06:00
parent 94f575a8ad
commit db389fc83b

View File

@@ -19,7 +19,6 @@ package org.springframework.cloud.launcher.cli;
import static org.hamcrest.CoreMatchers.containsString;
import static org.junit.Assert.assertThat;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
@@ -32,14 +31,12 @@ public class LauncherCommandTests {
public OutputCapture output = new OutputCapture();
@Test
@Ignore
public void testCreateClassLoaderAndListDeployables() throws Exception {
new LauncherCommand().run("--list");
assertThat(output.toString(), containsString("configserver"));
}
@Test
@Ignore
public void testNonOptionArgsPassedDown() throws Exception {
new LauncherCommand().run("--list", "--", "--spring.profiles.active=test");
assertThat(output.toString(), containsString("foo"));