inst/tinytest/test_delete_trailing_blank_lines.R

if (interactive()) {
  pkgload::load_all()
  library("tinytest")
}


template <- system.file("files", "blanks.txt", package = "fritools2")
input <- tempfile()
file.copy(template, input)
delete_trailing_blank_lines(file_names = input)
result <- readLines(input)
template <- readLines(template)
expect_identical(length(result), as.integer(length(template) - 2))

Try the fritools2 package in your browser

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

fritools2 documentation built on July 9, 2023, 7:07 p.m.