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:759–765  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

757
758 #[test]
759 fn test_validate_view_name_empty() {
760 let init = Init::new().with_view("");
761 let result = init.validate_view_name();
762 assert!(result.is_err());
763 let err = result.unwrap_err();
764 assert!(matches!(err, CliError::InvalidArgument { .. }));
765 }
766
767 #[test]
768 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