skip_if_not_installed("MASS") skip_on_cran() test_that("robust-se polr", { data(housing, package = "MASS") m <- MASS::polr(Sat ~ Infl + Type + Cont, weights = Freq, data = housing) out <- model_parameters(m) expect_identical(attributes(out)$coefficient_name, "Log-Odds") m <- MASS::polr(Sat ~ Infl + Type + Cont, weights = Freq, data = housing, method = "probit") out <- model_parameters(m) expect_identical(attributes(out)$coefficient_name, "Coefficient") })