tests/testthat/test_format_matlab.R

skip_if_not_installed("rmatio")

test_that("Export to and import from matlab", {
    skip("failing mysteriously")
    withr::with_tempfile("iris_file", fileext = ".matlab", code = {
        export(iris, iris_file)
        expect_true(file.exists(iris_file))
        expect_true(is.data.frame(import(iris_file)))
        expect_true(identical(dim(import(iris_file)), dim(iris)))

    })
})

Try the rio package in your browser

Any scripts or data that you put into this service are public.

rio documentation built on June 22, 2024, 9:48 a.m.