tests/testthat/test-check-vector-isTempFile.R

test_that("TRUE", {
    x <- tempfile()
    invisible(file.create(x))
    expect_true(isATempFile(x))
    expect_true(allAreTempFiles(x))
    unlink(x)
})

test_that("FALSE", {
    x <- tempfile()
    expect_false(isATempFile(x))
    expect_false(allAreTempFiles(x))
})
steinbaugh/goalie documentation built on Jan. 17, 2024, 5:16 p.m.