We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2092d0c commit af7946dCopy full SHA for af7946d
tests/testthat/test-combineRDBESDataObjects.R
@@ -66,4 +66,15 @@ test_that("combineRDBESDataObjects does not warn when combining objects from sam
66
NA)
67
})
68
69
+test_that("combineRDBESDataObjects does not warn when one object has no DE table", {
70
+
71
+ myObject1 <- importRDBESDataCSV(rdbesExtractPath = "./h1_v_20250211")
72
+ myObject2 <- createRDBESDataObject() # Empty object with no DE
73
74
+ # Expect no warning because one object has no hierarchy
75
+ expect_warning(combineRDBESDataObjects(RDBESDataObject1=myObject1,
76
+ RDBESDataObject2=myObject2),
77
+ NA)
78
+})
79
80
}) ## end capture.output
0 commit comments