/[Frey]/trunk/t/02-frey-web.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/t/02-frey-web.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 545 by dpavlin, Wed Nov 26 07:57:12 2008 UTC revision 546 by dpavlin, Wed Nov 26 20:48:07 2008 UTC
# Line 2  Line 2 
2  use strict;  use strict;
3  use warnings;  use warnings;
4    
5  use Test::More tests => 25;  use Test::More tests => 27;
6  use lib 'lib';  use lib 'lib';
7    
8  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
# Line 34  ok( my @head = $o->head, 'js' ); Line 34  ok( my @head = $o->head, 'js' );
34    
35  diag dump( @head ) if $debug;  diag dump( @head ) if $debug;
36    
37  ok( $o->add_head( '/static/introspect.css' ), 'add_head css' );  ok( $o->add_head( '/static/introspect.css' ),  'add_head css' );
38  ok( $o->add_head( "<!--\nhead html\n-->" ),     'add_head html' );  ok( $o->add_head( "<!--\nhead comment\n-->" ), 'add_head comment' );
39    ok( $o->add_head( "<span>head html</span>>" ), 'add_head html' );
40    
41  ok( my $html = $o->page( title => 'Test', body => '<!-- in-body -->' ), 'page' );  ok( my $html = $o->page( title => 'Test', body => '<!-- in-body -->' ), 'page' );
42  diag $html if $debug;  diag $html if $debug;
43    
44  like( $html, qr{text/javascript.*\.js}, 'have js' );  like( $html, qr{text/javascript.*\.js}, 'have js' );
45  like( $html, qr{text/css.*\.css}, 'have css' );  like( $html, qr{text/css.*\.css}, 'have css' );
46    like( $html, qr{head comment}, 'have comment' );
47  like( $html, qr{head html}, 'have html' );  like( $html, qr{head html}, 'have html' );
48  like( $html, qr{icon}, 'have icon' );  like( $html, qr{icon}, 'have icon' );
49    

Legend:
Removed from v.545  
changed lines
  Added in v.546

  ViewVC Help
Powered by ViewVC 1.1.26