#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
BEGIN { push(@INC, "lib", "t"); }
use TestHelper;

my $mturk = TestHelper->new;

plan tests => 2;
ok( $mturk, "Created client");

my @operations = $mturk->listOperations();
ok( @operations, "ListOperations");


syntax highlighted by Code2HTML, v. 0.9.1