Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (20 sloc) 495 Bytes
testthat::context("read images")
testthat::describe('slick div method',{
it('png',{
testthat::expect_equal(
readImage('../assets/img1.png'),
readRDS('../assets/img1.Rds')
)
})
it('svg',{
testthat::expect_equal(
readImage('../assets/img2.svg'),
readRDS('../assets/img2.Rds')
)
})
it('svg not standalone',{
testthat::expect_error(
slickR:::readImage('../assets/not_standalone.svg'),
regexp = 'not standalone')
})
})
You can’t perform that action at this time.