Skip to content

Commit cc9a6a2

Browse files
committed
Coverage
1 parent 7fbe530 commit cc9a6a2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/testthat/test-class_runtime.R

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,14 @@ tar_test("nanonext", {
9797
expect_silent(runtime_validate(x))
9898
})
9999

100+
tar_test("traceback", {
101+
x <- runtime_new()
102+
expect_null(x$traceback)
103+
x$traceback <- "calls"
104+
expect_equal(x$traceback, "calls")
105+
expect_silent(runtime_validate(x))
106+
})
107+
100108
tar_test("validate null fields", {
101109
x <- runtime_new()
102110
expect_silent(runtime_validate(x))

0 commit comments

Comments
 (0)