Nothing
if (is_windows()) {
describe("group_ids()", {
it("returns the group ids", {
g <- group_ids()
expect_s3_class(g, "data.frame")
expect_true(nrow(g) == 0)
expect_equal(colnames(g), c("group_id", "group_name"))
})
})
describe("user_ids()", {
it("returns the group ids", {
u <- user_ids()
expect_s3_class(u, "data.frame")
expect_true(nrow(u) == 0)
expect_equal(colnames(u), c("user_id", "user_name"))
})
})
} else {
describe("group_ids()", {
it("returns the group ids", {
g <- group_ids()
expect_s3_class(g, "data.frame")
expect_true(nrow(g) > 0)
expect_equal(colnames(g), c("group_id", "group_name"))
})
})
describe("user_ids()", {
it("returns the group ids", {
u <- user_ids()
expect_s3_class(u, "data.frame")
expect_true(nrow(u) > 0)
expect_equal(colnames(u), c("user_id", "user_name"))
})
})
}
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.