Browse Source

tests

master
Bob Rudis 8 years ago
parent
commit
8a37284b72
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. 4
      README.md
  2. 2
      tests/test-all.R
  3. 7
      tests/testthat/test-wand.R

4
README.md

@ -70,13 +70,13 @@ library(testthat)
date()
```
## [1] "Fri Aug 12 23:38:14 2016"
## [1] "Fri Aug 12 23:58:20 2016"
``` r
test_dir("tests/")
```
## testthat results ========================================================================================================
## OK: 0 SKIPPED: 0 FAILED: 0
## OK: 1 SKIPPED: 0 FAILED: 0
##
## DONE ===================================================================================================================

2
tests/test-all.R

@ -1,2 +1,2 @@
library(testthat)
test_check("filemagic")
test_check("wand")

7
tests/testthat/test-wand.R

@ -1,6 +1,11 @@
context("basic functionality")
test_that("we can do something", {
#expect_that(some_function(), is_a("data.frame"))
tmp <- incant(list.files(system.file("img", package="wand"), full.names=TRUE),
magic_wand_file())
tmp <- tmp$description
tmp <- unlist(tmp, use.names=FALSE)
expect_that(tmp[2], equals("C source, ASCII text"))
})

Loading…
Cancel
Save