()
| 2055 | |
| 2056 | #[tokio::test] |
| 2057 | async fn test_resolve_stack_default_fallback() { |
| 2058 | let config = TskConfig::default(); |
| 2059 | let tmp = tempfile::tempdir().unwrap(); |
| 2060 | let result = resolve_stack(None, &config, "my-project", None, tmp.path()).await; |
| 2061 | assert_eq!(result, "default"); |
| 2062 | } |
| 2063 | |
| 2064 | #[tokio::test] |
| 2065 | async fn test_resolve_stack_user_project_wins_over_project_file_and_defaults() { |
nothing calls this directly
no test coverage detected