1
2# some test to check that we can program over tests.
3
4# this should yield 10 testresults
5for ( i in 1:10 ){
6  expect_equal(1+1,2)
7}
8
9# this should yield a single testresult
10if ( ignore(expect_equal)(1+1,2) ){
11  expect_true(TRUE)
12}
13
14
15