fn deserialization_disable_password_true()

in libazureinit/src/imds.rs [292:300]


    fn deserialization_disable_password_true() {
        let os_profile = json!({
            "adminUsername": "MinProvAgentUser",
            "computerName": "AzTux-MinProvAgent-Test-0001",
            "disablePasswordAuthentication": "true"
        });
        let os_profile: OsProfile = serde_json::from_value(os_profile).unwrap();
        assert!(os_profile.disable_password_authentication);
    }