Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demo/wiremock/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Demo - WireMock on Testcontainers C

Demonstrates usage of the [WireMock Module for Testcontainers C](../../modules/wiremock/) in a simple main function.
Demonstrates usage of the [WireMock Module for Testcontainers C](../../modules/wiremock/README.md) in a simple main function.
No test framework is used here.

## Running demo
Expand Down
2 changes: 1 addition & 1 deletion docs/architecture/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ This stage depends on the language and common practices there.
Well, you build it.
From the previous stages,
you get a header file, binding libraries,
a shared library object or a DLL file from the [Testcontainers for C](./docs/c/README.md) module.
a shared library object or a DLL file from the [Testcontainers for C](../c/README.md) module.
Then, you know the drill.
1 change: 0 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
See [GitHub Releases](https://github.com/testcontainers/testcontainers-native/releases)

## ::github-release-changelog testcontainers/testcontainers-native

2 changes: 1 addition & 1 deletion docs/cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ TEST_F(WireMockTestContainer, HelloWorld) {

## Demos

- [Using Testcontainers C in Google Test (C++)](../../demo/google-test/)
- [Using Testcontainers C in Google Test (C++)](../../demo/google-test/README.md)
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Any patches and issue reports are welcome!

You can use a C/C++ framework for writing tests, e.g. CTest or CppUnit.
Or you can just have a small launcher as presented below.
Below there is a code of the [WireMock demo](./demo/wiremock/) that only uses the library
Below there is a code of the [WireMock demo](../demo/wiremock/README.md) that only uses the library
but not a specialized WireMock module (see below).

Note that in this example, we do not terminate the container,
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ docs_dir: .
exclude_docs: |
/_deps/**
!.devcontainer
/build/_deps/**

nav:
- Documentation:
Expand Down Expand Up @@ -61,8 +62,7 @@ plugins:
paths: [src]
- mkdocs_github_changelog:
token: !ENV GITHUB_TOKEN
release_template: <jinja2 str>
match: 'v[0-9+].[0-9+].[0-9]+'
base_indent: 2
autoprocess: true
enabled: true

Expand Down
4 changes: 2 additions & 2 deletions modules/wiremock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ for the list of modules for other languages.

## Sample output

[![Sample Output](../../demo/wiremock/sample_output.png)](../../demo/wiremock/)
[![Sample Output](../../demo/wiremock/sample_output.png)](../../demo/wiremock/README.md)

## Examples

- [Usage Demo](../../demo/wiremock/)
- [Usage Demo](../../demo/wiremock/README.md)

## Read more

Expand Down