box::use( testthat[expect_equal, test_that], withr[with_dir], ) with_dir("../../app/", box::use( logic/init[sum_two_numbers], ) ) test_that("Two numbers computes the correct result", { expect_equal(4, sum_two_numbers(2, 2)) })