tests/testthat/test-lsat_scenes.R

context("lsat_scenes")

test_that("lsat_scenes, n_max parameter usage", {
  skip_on_cran()

  a <- lsat_scenes(n_max = 3)

  expect_is(a, "data.frame")
  expect_is(a, "tbl_df")
  expect_is(a$entityId, "character")
  expect_is(a$acquisitionDate, "POSIXct")

  expect_equal(NROW(a), 3)
})

test_that("lsat_scenes, skip parameter usage", {
  expect_warning(lsat_scenes(n_max = 3, skip = 3),
                 "you probably don't want to use 'skip'")
})

Try the getlandsat package in your browser

Any scripts or data that you put into this service are public.

getlandsat documentation built on May 2, 2019, 2:37 a.m.