Skip to content

Commit 7759b5c

Browse files
Renamed module
1 parent db3d156 commit 7759b5c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ syn = "2.0"
5353
typify = { version = "0.1.0" }
5454

5555
[workspace]
56-
members = ["macros", "test-services", "test-env"]
56+
members = ["macros", "test-services", "testcontainers"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Just configure it as usual through [`tracing_subscriber`](https://docs.rs/tracin
6666
### Testing
6767

6868
The SDK uses [Testcontainers](https://rust.testcontainers.org/) to support integration testing using a Docker-deployed restate server.
69-
The `restate-sdk-test-env` crate provides a framework for initializing the test environment, and an integration test example in `test-env/tests/test_container.rs`.
69+
The `restate-sdk-testcontainers` crate provides a framework for initializing the test environment, and an integration test example in `testcontainers/tests/test_container.rs`.
7070

7171
```rust
7272
#[tokio::test]

test-env/Cargo.toml renamed to testcontainers/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
2-
name = "restate-sdk-test-env"
2+
name = "restate-sdk-testcontainers"
33
version = "0.4.0"
44
edition = "2021"
5-
description = "Test Utilities for Restate SDK for Rust"
5+
description = "Restate SDK Testcontainers utilities"
66
license = "MIT"
77
repository = "https://github.com/restatedev/sdk-rust"
88
rust-version = "1.76.0"
File renamed without changes.

test-env/tests/test_container.rs renamed to testcontainers/tests/test_container.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use reqwest::StatusCode;
22
use restate_sdk::prelude::*;
3-
use restate_sdk_test_env::TestContainer;
3+
use restate_sdk_testcontainers::TestContainer;
44
use tracing::info;
55

66
#[restate_sdk::service]

0 commit comments

Comments
 (0)