Skip to content

Commit

Permalink
Removed 'reuse' feature step.
Browse files Browse the repository at this point in the history
  • Loading branch information
sivaprasadreddy committed Jan 8, 2024
1 parent 4dba1c0 commit 499b4cd
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 43 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ We will work with a Spring Boot application and explore how to:
* [Step 2: Exploring the app](step-2-exploring-the-app.md)
* [Step 3: Local Development Environment with Testcontainers](step-3-local-development-environment.md)
* [Step 4: Connect to Services](step-4-connect-to-services.md)
* [Step 5: Use Reusable Containers](step-5-use-reusable-containers.md)
* [Step 6: Write Tests](step-6-write-tests.md)
* [Step 5: Write Tests](step-5-write-tests.md)


## License Summary
Expand Down
2 changes: 1 addition & 1 deletion step-3-local-development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ You should get the following response with `"available":false` because we mocked
}
```
Now we have the working local development environment with PostgreSQL, Kafka, LocalStack, and WireMock.
Now we have a working local development environment with PostgreSQL, Kafka, LocalStack, and WireMock.
###
[Next](step-4-connect-to-services.md)
2 changes: 1 addition & 1 deletion step-4-connect-to-services.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ psql -h localhost -p 5432 -U test -d test
Similarly, you can connect to any of your containers using the same approach by using the port-mapping feature of Testcontainers Desktop.

###
[Next](step-5-use-reusable-containers.md)
[Next](step-5-write-tests.md)
38 changes: 0 additions & 38 deletions step-5-use-reusable-containers.md

This file was deleted.

2 changes: 1 addition & 1 deletion step-6-write-tests.md → step-5-write-tests.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Step 6: Let's write tests
# Step 5: Let's write tests
So far, we focused on being able to run the application locally without having to install or run any dependent services manually.
But there is nothing more painful than working on a codebase without a comprehensive test suite.

Expand Down

0 comments on commit 499b4cd

Please sign in to comment.