1#!/usr/bin/perl
2use strict;
3use warnings;
4use Test::More;
5BEGIN { push(@INC, "lib", "t"); }
6use TestHelper;
7
8my $mturk = TestHelper->new;
9
10plan tests => 2;
11ok( $mturk, "Created client");
12
13my @operations = $mturk->listOperations();
14ok( @operations, "ListOperations");
15