Nothing
test_that("ids_list_entities returns a tibble with expected columns", {
result <- ids_list_entities()
expect_s3_class(result, "tbl_df")
expected_columns <- c(
"entity_id",
"entity_iso2code",
"entity_type",
"capital_city",
"entity_name",
"region_id",
"region_iso2code",
"region_name",
"admin_region_id",
"admin_region_iso2code",
"admin_region_name",
"income_level_id",
"income_level_iso2code",
"income_level_name",
"lending_type_id",
"lending_type_iso2code",
"lending_type_name"
)
expect_equal(colnames(result), expected_columns)
})
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.