migrate Survey graph to formbuilder

This commit is contained in:
Doug Bell 2011-02-03 16:56:03 -06:00
parent db8b507b94
commit 1fb51f2e75
2 changed files with 24 additions and 10 deletions

View file

@ -8,6 +8,7 @@ use Test::More;
use Test::Deep;
use Data::Dumper;
use WebGUI::Test; # Must use this before any other WebGUI modules
use WebGUI::Test::Mechanize;
use WebGUI::Session;
#----------------------------------------------------------------------------
@ -16,7 +17,7 @@ my $session = WebGUI::Test->session;
#----------------------------------------------------------------------------
# Tests
plan tests => 47;
plan tests => 51;
#----------------------------------------------------------------------------
# put your tests here
@ -261,6 +262,21 @@ like($storage->getFileContentsAsScalar($filename), qr{
stop$ # ..and end with stop
}xs, 'Generated graph looks roughly okay');
my $mech = WebGUI::Test::Mechanize->new( config => WebGUI::Test->file );
$mech->get_ok( '/' );
$mech->session->user({ userId => 3 });
$mech->get_ok( $survey->getUrl( 'func=graph' ) );
$mech->submit_form_ok({
fields => {
format => "plain",
layout => "dot",
},
},
"generate a graph",
);
# Can only test for the uploads, mech doesn't have uploads handler
$mech->content_contains( 'uploads/temp', 'uploads link exists' );
}
####################################################