2022-10-28 12:06:03 +00:00
|
|
|
---
|
2022-11-01 12:38:52 +00:00
|
|
|
source: hooked-config/tests/parsing.rs
|
2022-10-28 12:06:03 +00:00
|
|
|
expression: config
|
|
|
|
---
|
|
|
|
Config {
|
|
|
|
general: General {
|
2022-11-01 12:38:52 +00:00
|
|
|
config: "Hooked.toml",
|
2022-10-28 12:06:03 +00:00
|
|
|
directory: "hooked",
|
|
|
|
},
|
|
|
|
pre_commit: [
|
|
|
|
PreCommit {
|
|
|
|
name: Some(
|
|
|
|
"Pre Commit 1",
|
|
|
|
),
|
|
|
|
on_failure: Continue,
|
|
|
|
task: Task {
|
|
|
|
command: Some(
|
|
|
|
"exit 0",
|
|
|
|
),
|
|
|
|
script: None,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PreCommit {
|
|
|
|
name: Some(
|
|
|
|
"Pre Commit 2",
|
|
|
|
),
|
|
|
|
on_failure: Stop,
|
|
|
|
task: Task {
|
|
|
|
command: None,
|
|
|
|
script: Some(
|
|
|
|
"test.sh",
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|