unignore tests

This commit is contained in:
Spencer Gibb
2016-09-12 15:19:58 -06:00
parent 3d2bb7100f
commit 2dc5b47ac4

View File

@@ -16,13 +16,12 @@
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;
import static org.hamcrest.CoreMatchers.containsString;
import static org.junit.Assert.assertThat;
/**
* @author Spencer Gibb
*/
@@ -32,14 +31,12 @@ public class LauncherCommandTests {
public OutputCapture output = new OutputCapture();
@Test
@Ignore("See DeployerThreadTests for similar functionality")
public void testCreateClassLoaderAndListDeployables() throws Exception {
new LauncherCommand().run("--list");
assertThat(output.toString(), containsString("configserver"));
}
@Test
@Ignore("See DeployerThreadTests for similar functionality")
public void testNonOptionArgsPassedDown() throws Exception {
new LauncherCommand().run("--list", "--", "--spring.profiles.active=test");
assertThat(output.toString(), containsString("foo"));