MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / test_validate_view_name_empty

Function test_validate_view_name_empty

atomic-cli/src/commands/init.rs:753–759  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

751
752 #[test]
753 fn test_validate_view_name_empty() {
754 let init = Init::new().with_view("");
755 let result = init.validate_view_name();
756 assert!(result.is_err());
757 let err = result.unwrap_err();
758 assert!(matches!(err, CliError::InvalidArgument { .. }));
759 }
760
761 #[test]
762 fn test_validate_view_name_with_slash() {

Callers

nothing calls this directly

Calls 2

validate_view_nameMethod · 0.80
with_viewMethod · 0.45

Tested by

no test coverage detected