35 lines
757 B
Rust
35 lines
757 B
Rust
|
use {
|
||
|
hooked::{Config, ExitAction, PreCommit, Task},
|
||
|
toml::to_string_pretty,
|
||
|
};
|
||
|
|
||
|
use insta::assert_snapshot;
|
||
|
|
||
|
#[test]
|
||
|
fn test_serialize() {
|
||
|
let pre_commit_command = PreCommit {
|
||
|
name: Some("Command Test".to_string()),
|
||
|
on_failure: ExitAction::Continue,
|
||
|
task: Task {
|
||
|
command: Some("exit 0".to_string()),
|
||
|
script: None,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
let pre_commit_script = PreCommit {
|
||
|
name: Some("Script Test".to_string()),
|
||
|
on_failure: ExitAction::Stop,
|
||
|
task: Task {
|
||
|
command: None,
|
||
|
script: Some("test.sh".into()),
|
||
|
},
|
||
|
};
|
||
|
|
||
|
let config = Config {
|
||
|
general: Default::default(),
|
||
|
pre_commit: vec![pre_commit_command, pre_commit_script],
|
||
|
};
|
||
|
|
||
|
assert_snapshot!("serialize", to_string_pretty(&config).unwrap());
|
||
|
}
|