From f9931d137656c01ef60e51c47572f8936038f167 Mon Sep 17 00:00:00 2001 From: Jay Allen Date: Fri, 23 Apr 2010 13:41:58 -0700 Subject: [PATCH] Because, really, there are few more effective ways in software development to enshrine your immaturity than by putting profanity in the source code... --- t/07-builder.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t/07-builder.t b/t/07-builder.t index 157ac1dfe..0ff134b2f 100644 --- a/t/07-builder.t +++ b/t/07-builder.t @@ -72,20 +72,20 @@ ok(ref($tokens->[0][1]) eq 'HASH'); is($tokens->[0][1]{yes}, 'foo\'s bar'); $tokens = $builder->compile($ctx, <<'TEXT'); -time to kick out the jams, motherfuckers +time to kick out the jams <$MTFoo$> TEXT ok($tokens && ref($tokens) eq 'ARRAY'); ok(@$tokens == 3); ok($tokens->[0][0] eq 'TEXT'); -ok($tokens->[0][1] eq "time to kick out the jams, motherfuckers\n"); +ok($tokens->[0][1] eq "time to kick out the jams\n"); ok($tokens->[1][0] eq 'Foo'); ok($tokens->[2][0] eq 'TEXT'); ok($tokens->[2][1] eq "\n"); is($builder->build($ctx, $tokens), - "time to kick out the jams, motherfuckers\nfoo\n"); + "time to kick out the jams\nfoo\n"); is($builder->build($ctx, $tokens, { Foo => 0 }), - "time to kick out the jams, motherfuckers\n\n"); + "time to kick out the jams\n\n"); # $tokens = $builder->compile($ctx, ''); # ok(!$tokens);