Nothing
context("FWF imports/exports")
require("datasets")
test_that("Export to FWF", {
expect_true(export(iris, "iris.fwf") %in% dir())
expect_true(export(iris, "iris.txt", format = "fwf") %in% dir())
})
test_that("Import from FWF (read.fwf)", {
expect_true(is.data.frame(import("iris.fwf", widths = c(3,3,3,3,1))))
expect_true(is.data.frame(import("iris.fwf", widths = list(c(3,3,3,3,1)))))
expect_true(is.data.frame(import("iris.fwf", widths = c(3,3,3,3,1), col.names = names(iris))))
expect_true(is.data.frame(import("iris.fwf", widths = c(3,3,3,3,1), col.names = names(iris), readr = TRUE)))
expect_true(is.data.frame(import("iris.txt", widths = c(3,3,3,3,1), format = "fwf")))
})
test_that("Import from FWF (read_fwf)", {
expect_true(is.data.frame(import("iris.fwf", widths = c(3,3,3,3,1), readr = TRUE)))
expect_true(is.data.frame(import("iris.txt", widths = c(3,3,3,3,1), format = "fwf", readr = TRUE)))
# negative column widths
expect_true(is.data.frame(import("iris.fwf", widths = c(-3,3,3,3,1), readr = FALSE)))
expect_true(is.data.frame(import("iris.fwf", widths = c(-3,3,3,3,1), readr = TRUE)))
})
test_that("Import from FWF Errors", {
expect_error(import("iris.fwf"),
"Import of fixed-width format data requires a 'widths' argument. See ? read.fwf().",
fixed = TRUE)
# error on NULL widths
expect_error(import("iris.fwf", widths = NULL, readr = FALSE))
# no error on NULL widths w/ readr::read_fwf()
expect_true(suppressWarnings(is.data.frame(import("iris.fwf", widths = NULL, readr = TRUE))))
})
unlink("iris.fwf")
unlink("iris.txt")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.