We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
read_register()
.parq
1 parent 87e40e4 commit d9bd996Copy full SHA for d9bd996
tests/testthat/test-read.R
@@ -93,3 +93,9 @@ test_that("non-Parquet file returns error", {
93
94
expect_error(read_register(temp_txt_file), temp_txt_file)
95
})
96
+
97
+test_that("files with extension .parq can also be read", {
98
+ path <- fs::path_temp("file.parq")
99
+ arrow::write_parquet(simulate_register("kontakter")[[1]], sink = path)
100
+ expect_no_error(read_register(path))
101
+})
0 commit comments