Skip to content

Commit

Permalink
Merge pull request #1576 from eddumelendez
Browse files Browse the repository at this point in the history
* pr/1576:
  Add missing test to generate compose file when spring-ai-vectordb-neo4j is selected

Closes gh-1576
  • Loading branch information
mhalbritter committed Sep 5, 2024
2 parents fedf44c + 1c8208a commit b920f1a
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,10 @@ void createsNeo4jService() {
assertThat(composeFile(request)).hasSameContentAs(new ClassPathResource("compose/neo4j.yaml"));
}

@Test
void createsNeo4jServiceWhenSpringAiModuleIsSelected() {
ProjectRequest request = createProjectRequest("docker-compose", "spring-ai-vectordb-neo4j");
assertThat(composeFile(request)).hasSameContentAs(new ClassPathResource("compose/neo4j.yaml"));
}

}

0 comments on commit b920f1a

Please sign in to comment.