The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package main;

use 5.006002;

use strict;
use warnings;

use Astro::SpaceTrack;
use Test::More 0.96;	# For subtest

use lib qw{ inc };
use My::Module::Test;

my $skip;
$skip = site_check 'spaceflight.nasa.gov'
    and plan skip_all => $skip;

my $st = Astro::SpaceTrack->new();

is_success $st, spaceflight => '-all', 'iss', 'Human Space Flight data';

is $st->content_type(), 'orbit', "Content type is 'orbit'";

is $st->content_source(), 'spaceflight',
    "Content source is 'spaceflight'";

done_testing;

1;

# ex: set textwidth=72 :