Nothing
test_that("sample_int_rej emits an otel span with parameter and result attributes", {
skip_if_not_installed("otel")
recorder <- make_span_recorder()
local_mocked_bindings(start_local_active_span = recorder$start)
set.seed(42)
sample_int_rej(6, 3, c(995, rep(1, 5)))
expect_snapshot(recorder$spans)
})
test_that("sample_int_rej recurses and emits one span per recursion", {
skip_if_not_installed("otel")
recorder <- make_span_recorder()
local_mocked_bindings(start_local_active_span = recorder$start)
set.seed(20150618L)
sample_int_rej(50, 40, runif(50))
expect_snapshot(lapply(recorder$spans, function(s) {
list(name = s$name, attribute_keys = sort(names(s$attributes)))
}))
})
test_that("otel_tracer_name follows the reverse-URL convention", {
expect_equal(
asNamespace("wrswoR")$otel_tracer_name,
"io.github.krlmlr.wrswoR"
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.