Lines Matching refs:UbootConfig
6 pub struct UbootConfig { struct
28 impl Default for UbootConfig { argument
38 impl UbootConfig { impl
56 UbootConfig::DEFAULT_DOWNLOAD_URL.to_string() in default_download_url()
60 UbootConfig::DEFAULT_VERSION.to_string() in default_version()
64 UbootConfig::DEFAULT_PATH_PREFIX.to_string() in default_path_prefix()
73 let config = UbootConfig::default(); in test_default_uboot_config()
74 assert_eq!(config.download_url, UbootConfig::DEFAULT_DOWNLOAD_URL); in test_default_uboot_config()
81 let config = UbootConfig::default(); in test_full_download_url_riscv64()
92 let config: UbootConfig = toml::from_str(toml_content).unwrap(); in test_empty_toml_deserialization()
95 assert_eq!(config.download_url, UbootConfig::DEFAULT_DOWNLOAD_URL); in test_empty_toml_deserialization()