Skip to content

Commit

Permalink
New test added.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaneplusplus committed Dec 21, 2017
1 parent ebf3960 commit 4d5ce6b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/testthat/test_assignment.R
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,10 @@ test_that("Able to assign based on logical rows and column names", {
z[c(TRUE, TRUE, FALSE), c('d', 'e')] <- 1
})

test_that("Able to assign based on integer rows and column names", {
z[2:3, c('d', 'e')] <- 1
})


rm(z)
gc()
Expand Down

0 comments on commit 4d5ce6b

Please sign in to comment.