Nothing
      context("get airlines")
test_that("standard get_airlines", {
  skip_on_cran()
  skip_if_offline()
  skip_on_os("windows")
  
  airlines_ <- get_airlines()
})
test_that("get_airlines joined to nycflights13", {
  skip_on_cran()
  skip_if_offline()
  skip_on_os("windows")
  
  # grab the airlines data and join it with the nycflights13 flights data
  airlines_ <- get_airlines(flights_data = nycflights13::flights)
  
  # grab the original nycflights13 airlines data
  airlines_orig <- nycflights13::airlines
  
  # expect same nrow, ncol, column names, and column types
  expect_equal(nrow(airlines_), nrow(airlines_orig))
  expect_equal(ncol(airlines_), ncol(airlines_orig))
  expect_equal(colnames(airlines_), colnames(airlines_orig))
  expect_equal(purrr::map(airlines_, class) %>% unlist(),
               purrr::map(airlines_orig, class) %>% unlist())
})
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.