citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 04518327d5a6586efcba60ced43a7117180cd9f3
parent 36f32f49316143234b70fec74231204c8b217342
Author: Kyle Milz <kyle@0x30.net>
Date:   Sat, 17 Dec 2016 00:36:05 -0700

t: add some descriptions

Diffstat:
Mt/www.t | 14++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/t/www.t b/t/www.t @@ -3,14 +3,12 @@ # use strict; use warnings; -use Test::More tests => 5; +use Test::More tests => 4; use Test::WWW::Mechanize; my $mech = Test::WWW::Mechanize->new; -$mech->get_ok( "http://cit.run" ); -$mech->base_is( "http://cit.run" ); -$mech->title_is( "C It Run" ); - -$mech->html_lint_ok(); - -$mech->page_links_ok("check all links"); +$mech->get_ok("http://cit.run"); +# $mech->base_is("http://cit.run"); +$mech->title_is("C It Run", "title is 'C It Run'"); +$mech->html_lint_ok("is html correct"); +$mech->page_links_ok("is no broken links");