2 # Copyright (C) 2010, Parrot Foundation.
7 t/pmc/imageiostrings.t - test ImageIOStrings PMC
11 % prove t/pmc/imageiostrings.t
15 Tests the ImageIOStringsPMC.
20 .include 'test_more.pir'
25 iios = new ['ImageIOStrings']
26 ok(1, 'instantiated ImageIOStrings')
30 iios = new ['ImageIOStrings']
34 nok( $I0, 'no strings in null pmc' )
36 test_pmc = split ' ', 'spam sausage spam spam bacon spam tomato and spam'
37 iios = new ['ImageIOStrings']
40 is_deeply( $P0, test_pmc, 'correctly manages RSA' )
47 # vim: expandtab shiftwidth=4 ft=pir: