Nothing
context("friendships")
test_that("friendships returns data", {
skip_on_cran()
token <- readRDS("twitter_tokens")
x <- my_friendships("kearneymw", token = token)
expect_equal(is.data.frame(x), TRUE)
expect_named(x)
expect_true("screen_name" %in% names(x))
x <- lookup_friendships("kearneymw", c("realdonaldtrump", "cstonehoops"))
expect_equal(is.data.frame(x), TRUE)
expect_named(x)
expect_true("relationship" %in% names(x))
})
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.