Skip to content

Commit

Permalink
test: Moved redis enterprise integration tests to replication
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Mar 19, 2024
1 parent 0ec23ae commit 7d2bacd
Show file tree
Hide file tree
Showing 6 changed files with 323 additions and 377 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import com.redis.testcontainers.RedisStackContainer;

@EnabledOnOs(OS.LINUX)
class EnterpriseContainerToStackTests extends AbstractIntegrationTests {
class EnterpriseContainerToStackTests extends AbstractReplicationTests {

private static final RedisEnterpriseContainer source = RedisContainerFactory.enterprise();
private static final RedisStackContainer target = RedisContainerFactory.stack();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.redis.testcontainers.RedisStackContainer;

@EnabledIfEnvironmentVariable(named = RedisEnterpriseServer.ENV_HOST, matches = ".*")
class EnterpriseServerToStackTests extends AbstractIntegrationTests {
class EnterpriseServerToStackTests extends AbstractReplicationTests {

private static final RedisEnterpriseServer source = RedisContainerFactory.enterpriseServer();
private static final RedisStackContainer target = RedisContainerFactory.stack();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import com.redis.testcontainers.RedisStackContainer;

@EnabledOnOs(OS.LINUX)
class StackToEnterpriseContainerTests extends AbstractIntegrationTests {
class StackToEnterpriseContainerReplicationTests extends AbstractReplicationTests {

private static final RedisStackContainer source = RedisContainerFactory.stack();
private static final RedisEnterpriseContainer target = RedisContainerFactory.enterprise();
Expand Down
Loading

0 comments on commit 7d2bacd

Please sign in to comment.