From: Chris W. <la...@us...> - 2004-11-28 04:49:50
|
Update of /cvsroot/openinteract/OpenInteract2/t In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26222/t Modified Files: context.t Log Message: update context tests to reflect moving dir.cache_tt to its content generator home Index: context.t =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/t/context.t,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** context.t 6 Jun 2004 06:36:03 -0000 1.40 --- context.t 28 Nov 2004 04:49:22 -0000 1.41 *************** *** 256,260 **** is( ref $tt_generator_info, 'HASH', 'TT content generator available and right type' ); ! is( keys %{ $tt_generator_info }, 8, 'TT content generator with right number of keys' ); is( $tt_generator_info->{class}, 'OpenInteract2::ContentGenerator::TT2Process', --- 256,260 ---- is( ref $tt_generator_info, 'HASH', 'TT content generator available and right type' ); ! is( keys %{ $tt_generator_info }, 9, 'TT content generator with right number of keys' ); is( $tt_generator_info->{class}, 'OpenInteract2::ContentGenerator::TT2Process', *************** *** 268,271 **** --- 268,273 ---- is( $tt_generator_info->{compile_cleanup}, 1, '...with compile cleanup instruction' ); + is( $tt_generator_info->{compile_dir}, 'cache/tt', + '...with compile directory' ); is( $tt_generator_info->{compile_ext}, '.ttc', '...with compile extension' ); *************** *** 312,316 **** error => [ 'error' ], log => [ 'logs' ], - cache_tt => [ 'cache', 'tt' ], config => [ 'conf' ], data => [ 'data' ], --- 314,317 ---- |