Skip to content

Commit

Permalink
Skip PrompterImplTest on Windows
Browse files Browse the repository at this point in the history
See reactiverse#644

Temporarily skip PrompterImplTest on Windows.
  • Loading branch information
tsegismont committed Nov 5, 2024
1 parent e289736 commit 8dee293
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
package io.reactiverse.vertx.maven.plugin.components.impl;

import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.SystemUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import java.io.*;

import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.Assume.assumeFalse;

/**
* Tests the Prompter implementation.
Expand All @@ -23,6 +25,7 @@ public class PrompterImplTest {

@Before
public void setUp() throws Exception {
assumeFalse(SystemUtils.IS_OS_WINDOWS);
input = new PipedInputStream();
pipeToInput = new PrintWriter(new PipedOutputStream(input), true);
output = new ByteArrayOutputStream();
Expand Down

0 comments on commit 8dee293

Please sign in to comment.