Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up| 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') | |
| }) | |
| }) |