Nothing
closed_issues <- get_issues(
source = "local",
dataset_dir = testthat::test_path("data"),
dataset_name = "closed_issues.yaml"
)
my_issues <- closed_issues[c(1L, 4L, 6L), ]
l <- list(
data.frame(number = c(963L, 323L, 154L), row.names = c(1L, 4L, 6L)),
list(
data.frame(name = "bug", color = "#d73a4a"),
data.frame(name = "bug", color = "#d73a4a"),
data.frame(name = character(0), color = character(0))
),
new_issue(
number = 963L,
title = "Fix config import in ProvidersTopComponent",
body = "Config import in ProvidersTopComponent doesn't work anymore. Export is OK.",
state = "closed",
url = "https://api.github.com/repos/jdemetra/jdplus-main/issues/963",
html_url = "https://github.com/jdemetra/jdplus-main/issues/963",
milestone = "3.8.0",
created_at = as.POSIXct("2026-04-24", tz = "UTC"),
closed_at = as.POSIXct("2026-04-24", tz = "UTC"),
creator = "charphi",
assignee = "charphi",
state_reason = "completed",
owner = "jdemetra",
repo = "jdplus-main",
labels = data.frame(name = "bug", color = "#d73a4a"),
comments = data.frame(text = character(0), author = character(0))
),
list(data.frame(name = "bug", color = "#d73a4a")),
new_issue(
number = 323L,
title = "User-defined variables with lags",
body = "User-defined variables with lags are not included in the model",
state = "closed",
url = "https://api.github.com/repos/jdemetra/jdplus-main/issues/323",
html_url = "https://github.com/jdemetra/jdplus-main/issues/323",
milestone = "3.2.3",
created_at = as.POSIXct("2024-06-13", tz = "UTC"),
closed_at = as.POSIXct("2024-06-13", tz = "UTC"),
creator = "palatej",
assignee = "palatej",
state_reason = "completed",
owner = "jdemetra",
repo = "jdplus-main",
labels = data.frame(name = "bug", color = "#d73a4a"),
comments = data.frame(
text = "Solved in #324 ",
author = "palatej"
)
),
list(data.frame(name = character(0), color = character(0)))
)
test_that("[ function is good", {
testthat::expect_identical(my_issues[], my_issues)
testthat::expect_identical(my_issues[1], l[[1L]])
testthat::expect_identical(
my_issues["labels"],
list(labels = l[[2L]]) |>
structure(row.names = c(1L, 4L, 6L), class = "data.frame")
)
testthat::expect_identical(my_issues[1, ], l[[3L]])
testthat::expect_identical(my_issues[1, , drop = TRUE], l[[3L]])
testthat::expect_identical(
my_issues[1, , drop = FALSE],
new_issues(l[[3]])
)
testthat::expect_warning(testthat::expect_identical(
my_issues[1, drop = TRUE],
l[[1L]]
))
testthat::expect_warning(testthat::expect_identical(
my_issues[1, drop = FALSE],
l[[1L]]
))
testthat::expect_identical(my_issues[, "labels"], l[[2L]])
testthat::expect_identical(my_issues[, 1], l[[1]][[1]])
testthat::expect_identical(my_issues[, 1, drop = TRUE], l[[1]][[1]])
testthat::expect_identical(my_issues[, 1, drop = FALSE], l[[1]])
testthat::expect_identical(my_issues[1, "labels"], l[[4L]])
testthat::expect_identical(my_issues[1, "labels", drop = TRUE], l[[4L]])
testthat::expect_identical(
my_issues[1, "labels", drop = FALSE],
list(labels = l[[4L]]) |>
structure(row.names = 1L, class = "data.frame")
)
testthat::expect_identical(my_issues[2, ], l[[5]])
testthat::expect_identical(my_issues[3, "labels"], l[[6]])
testthat::expect_identical(my_issues[3, "labels", drop = TRUE], l[[6]])
testthat::expect_identical(
my_issues[3, "labels", drop = FALSE],
list(labels = l[[6]]) |>
structure(row.names = 6L, class = "data.frame")
)
testthat::expect_identical(my_issues[3, 1], 154L)
testthat::expect_identical(my_issues[3, 1, drop = TRUE], 154L)
testthat::expect_identical(
my_issues[3, 1, drop = FALSE],
data.frame(number = 154L, row.names = 6L)
)
})
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.