The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -T
use 5.006;
use strict;
use warnings FATAL => 'all';
use Test::More;
use Test::Deep;

plan tests => 1;

use WebService::Cryptsy;

my $cryp = WebService::Cryptsy->new( timeout => 10 );

my $data = $cryp->orderdata;
if ( $data ) {
    cmp_deeply(
        $data,
        hash_each(
            {
                'primaryname' => re('.'),
                'secondaryname' => re('.'),
                'marketid' => re('^\d+$'),
                'secondarycode' => re('.'),
                'primarycode' => re('.'),
                'label' => re('.'),
                'sellorders' => any(
                    array_each(
                        {
                            'quantity' => re('^[-+.\d]+$'),
                            'price' => re('^[-+.\d]+$'),
                            'total' => re('^[-+.\d]+$'),
                        },
                    ),
                    undef,
                ),
                'buyorders' => any(
                    array_each(
                        {
                            'quantity' => re('^[-+.\d]+$'),
                            'price' => re('^[-+.\d]+$'),
                            'total' => re('^[-+.\d]+$')
                        },
                    ),
                    undef,
                ),
            },
        ),
        '->orderdata returns an expected hashref',
    );
}
else {
    diag "Got an error getting an API request: $cryp";
    ok( length $cryp->error );
}