-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added coverage for distinct_edges.R * determining whether tests for zzz.R are valid * attempt to resolve broken tests in zzz.R * removed test-zzz.R * checking to see if previous issues were from new test file * attempting to add test for .onLoad * attempting to cover onUnload and detach hooks * checking if codecov allows Namespace modifications * got rid of unloadNamespace * got rid of attachNamespace * got rid of warning in test-ggdend.R * undid linewidth change
- Loading branch information
1 parent
c1c132f
commit 63af7d7
Showing
2 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# cat("\n") | ||
# library(testthat) | ||
|
||
|
||
context("onLoad") | ||
|
||
|
||
test_that("onLoad works", { | ||
# no options for dendextend yet, should be empty | ||
dendextend:::.onLoad() | ||
expect_identical(getOption("dendextend"), NULL) | ||
}) | ||
|