Skip to content

Commit

Permalink
Coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Dec 6, 2023
1 parent 7fbe530 commit cc9a6a2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/testthat/test-class_runtime.R
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ tar_test("nanonext", {
expect_silent(runtime_validate(x))
})

tar_test("traceback", {
x <- runtime_new()
expect_null(x$traceback)
x$traceback <- "calls"
expect_equal(x$traceback, "calls")
expect_silent(runtime_validate(x))
})

tar_test("validate null fields", {
x <- runtime_new()
expect_silent(runtime_validate(x))
Expand Down

0 comments on commit cc9a6a2

Please sign in to comment.