- Implement tests for team creation, retrieval, updating, and deletion in TeamsRepository. - Add tests for team member management including adding and removing members. - Create tests for team invitations and searching teams. - Ensure proper cleanup of test data after each test case. - Validate unauthorized operations for team management.
31 lines
799 B
TOML
31 lines
799 B
TOML
[package]
|
|
name = "tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio.workspace = true
|
|
imphnen-iam.workspace = true
|
|
imphnen-dimentorin.workspace = true
|
|
imphnen-entities.workspace = true
|
|
imphnen-libs.workspace = true
|
|
imphnen-utils.workspace = true
|
|
http-body-util.workspace = true
|
|
hyper.workspace = true
|
|
hyper-util.workspace = true
|
|
serde_json.workspace = true
|
|
dotenvy.workspace = true
|
|
tower.workspace = true
|
|
tracing.workspace = true
|
|
surrealdb.workspace = true
|
|
serde.workspace = true
|
|
strum.workspace = true
|
|
uuid.workspace = true
|
|
rand.workspace = true
|
|
|
|
chrono.workspace = true
|
|
axum.workspace = true
|
|
yoke = { version = "0.8.0", features = ["derive", "alloc"] }
|
|
yoke-derive = "0.8.0" |