We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e1f096 commit eb08e14Copy full SHA for eb08e14
tests/testthat/test-issue_108.R
@@ -22,11 +22,13 @@ test_that("issue 108", {
22
)
23
24
# Works?
25
- beastier::is_beast2_input_file(output_filename)
+ expect_true(beastier::is_beast2_input_file(output_filename))
26
27
# Really really Works?
28
- beast2_xml_lines <- readr::read_lines(output_filename)
29
- beastier::are_beast2_input_lines_deep(beast2_xml_lines)
+ if (beastier::is_beast2_installed()) {
+ beast2_xml_lines <- readr::read_lines(output_filename)
30
+ expect_true(beastier::are_beast2_input_lines_deep(beast2_xml_lines))
31
+ }
32
33
remove_beautier_folder()
34
})
0 commit comments