Merge branch 'master' into topic/dt_feature_search
[sgn.git] / t / legacy / integration / metadata.t
blob9599ce23791f1c4d876428caa03ffdfb94630904
1 use Test::Most;
3 use lib 't/lib';
5 use aliased 'SGN::Test::WWW::Mechanize';
6 use SGN::Test::Data qw/  CXGN::Biosource::Schema  create_test  /;
8 my $mech = Mechanize->new;
10 $mech->with_test_level( local => sub {
12     my $file = create_test('MdFiles', {
13         dirname  => 't/data',
14         basename => 'ath_prots.seq',
15     });
17     ok( -f $file->path, 'made a test MdFiles object' );
19     $mech->get_ok( '/metadata/file/'.$file->file_id.'/download' );
20     is( $mech->content_type, 'text/plain', 'got right content type' );
22 });
25 done_testing;