Skip to content

Commit

Permalink
adding test
Browse files Browse the repository at this point in the history
  • Loading branch information
edwindj committed Aug 7, 2015
1 parent 89cabd6 commit 3c36b04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-verbs.R
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ describe("transmute()", {

describe("do()", {
tbl_women <- get_tbl_women()
expect_equal(tbl_women %>% head(.) %>% as.data.frame,
women %>% head(.)
expect_equal(tbl_women %>% do(2 * .) %>% as.data.frame,
women %>% do(2 * . )
)
})

Expand Down

0 comments on commit 3c36b04

Please sign in to comment.