hooked/hooked-config/tests/snapshots/parsing__with-hooks.snap

44 lines
905 B
Plaintext

---
source: hooked-config/tests/parsing.rs
expression: config
---
Config {
general: General {
config: "Hooked.toml",
directory: "hooked",
template: Some(
"test.sh",
),
},
pre_commit: [
PreCommit {
name: Some(
"Pre Commit 1",
),
on_failure: Continue,
staged: [
"*.txt",
],
task: Task {
command: Some(
"exit 0",
),
script: None,
},
},
PreCommit {
name: Some(
"Pre Commit 2",
),
on_failure: Stop,
staged: [],
task: Task {
command: None,
script: Some(
"test.sh",
),
},
},
],
}