Merge pull request #5243 from solgenomics/topic/observations_upload_catch_error
[sgn.git] / t / unit_fixture / Static / JavaScript.t
blobb13d76967d1fad2ea9f566c1da94448547e3af99
1 use strict;
2 use warnings;
3 use Test::More;
4 use Test::Warn;
5 use Data::Dumper;
7 use lib 't/lib';
9 use SGN::Test::WWW::Mechanize skip_cgi => 1;
11 my $mech = SGN::Test::WWW::Mechanize->new;
13 # { # test serving a single JS file
15     # $mech->get_ok( '/js/Text/Markup.js' );
16     # $mech->content_like( qr/function\s*\(/,'served a single JS file' );
17     # 
18     # $mech->get( '/js/Nonexistent.js' );
19     # $mech->content_like( qr/not found/i, 'nonexistent js says not found' );
20     # 
21     # #die "$res";
22     # is( $mech->status, 404, 'gives a 404' );
23     # 
24     # $mech->get( '/js/CXGN/Page/' );
25     # $mech->content_like( qr/not found/i, 'nonexistent js says not found' );
26     # is( $mech->status, 404, 'gives a 404' );
27     # 
28     # $mech->get( '/js/CXGN/Page' );
29     # $mech->content_like( qr/not found/i, 'nonexistent js says not found' );
30     # is( $mech->status, 404, 'gives a 404' );
32 # }
33 is(1, 1);
34 done_testing();