Skip to content

Commit

Permalink
Auto-update from GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nbenn committed Dec 8, 2023
1 parent c1e4bee commit e0947ad
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion man/adbi-package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions tests/testthat/test-utils.R
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
test_that("dbDataType for blob", {

expect_identical(
db_data_type_blob(
structure(list(), class = "adbcsqlite_driver_sqlite")
),
"BLOB"
)
expect_identical(
db_data_type_blob(
structure(list(), class = "adbcsqlite_driver_sqlite")
),
"BLOB"
)

expect_identical(
db_data_type_blob(
structure(list(), class = "adbcpostgresql_driver_postgresql")
),
"bytea"
)
expect_identical(
db_data_type_blob(
structure(list(), class = "adbcpostgresql_driver_postgresql")
),
"bytea"
)

expect_error(db_data_type_blob(structure(list(), class = "foo")))
})

0 comments on commit e0947ad

Please sign in to comment.