Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gvelasq committed Apr 7, 2021
1 parent 7c5d689 commit b3a20e7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/testthat/test-statascii.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test_that("data frame must have at least three columns for 'twoway' flavor", {
})

test_that("oneway flavor works", {
skip_on_appveyor()
skip_on_os("windows")
a <-
mtcars %>%
count(gear) %>%
Expand All @@ -36,7 +36,7 @@ test_that("oneway flavor works", {
})

test_that("oneway flavor with no padding works", {
skip_on_appveyor()
skip_on_os("windows")
b <-
mtcars %>%
count(gear) %>%
Expand All @@ -54,7 +54,7 @@ test_that("oneway flavor with no padding works", {
})

test_that("twowway flavor works for 3-way table", {
skip_on_appveyor()
skip_on_os("windows")
c <-
mtcars %>%
count(gear, carb, am) %>%
Expand All @@ -81,7 +81,7 @@ test_that("twowway flavor works for 3-way table", {
})

test_that("twoway flavor works with dashed group separators", {
skip_on_appveyor()
skip_on_os("windows")
d <-
mtcars %>%
count(gear, carb, am) %>%
Expand All @@ -108,7 +108,7 @@ test_that("twoway flavor works with dashed group separators", {
})

test_that("summary flavor with summary padding works", {
skip_on_appveyor()
skip_on_os("windows")
e <-
mtcars %>%
group_by(gear) %>%
Expand All @@ -128,7 +128,7 @@ test_that("summary flavor with summary padding works", {
})

test_that("wrap_tbl() works", {
skip_on_appveyor()
skip_on_os("windows")
f <- mtcars %>%
mutate(
cyl2 = cyl,
Expand Down

0 comments on commit b3a20e7

Please sign in to comment.