Add some tests for Repo

This commit is contained in:
Felix Krull 2019-05-18 16:13:54 +02:00 committed by Colin Walters
parent cfcc97d5f7
commit 26b5729c53
2 changed files with 17 additions and 0 deletions

View File

@ -140,3 +140,6 @@ impl<O: IsA<Repo> + IsA<glib::Object> + Clone + 'static> RepoExtManual for O {
}
}
}
#[cfg(test)]
mod tests;

View File

@ -0,0 +1,14 @@
use super::*;
use crate::RepoMode;
#[test]
fn should_get_repo_mode_from_string() {
let mode = Repo::mode_from_string("archive").unwrap();
assert_eq!(RepoMode::Archive, mode);
}
#[test]
fn should_return_error_for_invalid_repo_mode_string() {
let result = Repo::mode_from_string("invalid-repo-mode");
assert!(result.is_err());
}