chore: add integration test crate to workspace

This commit is contained in:
Joseph O'Brien
2026-04-01 05:01:42 -04:00
parent 748a0d8634
commit ef052c86cd
4 changed files with 35 additions and 0 deletions

14
Cargo.lock generated
View File

@@ -429,6 +429,20 @@ dependencies = [
"serde_core",
]
[[package]]
name = "integration"
version = "0.1.0"
dependencies = [
"anyhow",
"assert_fs",
"notcore",
"notfiles",
"nothooks",
"notsecrets",
"notstrap",
"tempfile",
]
[[package]]
name = "is_terminal_polyfill"
version = "1.70.2"

View File

@@ -8,6 +8,7 @@ members = [
"crates/notsecrets",
"crates/nothooks",
"crates/notstrap",
"tests/integration",
]
resolver = "2"

View File

@@ -0,0 +1,20 @@
[package]
name = "integration"
version = "0.1.0"
edition = "2024"
license.workspace = true
publish = false
[[test]]
name = "placeholder"
path = "tests/placeholder.rs"
[dev-dependencies]
notstrap = { path = "../../crates/notstrap" }
notfiles = { path = "../../crates/notfiles" }
nothooks = { path = "../../crates/nothooks" }
notsecrets = { path = "../../crates/notsecrets" }
notcore = { path = "../../crates/notcore" }
tempfile = { workspace = true }
assert_fs = { workspace = true }
anyhow = { workspace = true }

View File