Skip to content

Commit

Permalink
don't test functions that need a live connection
Browse files Browse the repository at this point in the history
close #135
  • Loading branch information
wibeasley committed Jan 14, 2024
1 parent a92b692 commit 0665afe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 29 deletions.
4 changes: 2 additions & 2 deletions R/assert-version.R
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ assert_version_package <- function(
assert_version_driver_sqlserver <- function(
connection,
minimum
) {
) { # nocov start
checkmate::assert_class(connection, "Microsoft SQL Server")
checkmate::assert_vector(minimum, len = 1, any.missing = FALSE)

Expand Down Expand Up @@ -189,4 +189,4 @@ assert_version_driver_sqlserver <- function(
} else {
invisible(TRUE)
}
}
} # nocov end
27 changes: 0 additions & 27 deletions tests/testthat/test-assert-version-driver-sqlserver.R

This file was deleted.

0 comments on commit 0665afe

Please sign in to comment.