Initial commit
[webservice-foaas.git] / t / WebService-FOAAS.t
CommitLineData
943f1904
MG
1#!/usr/bin/perl
2use 5.014000;
3use strict;
4use warnings;
5
6use Test::RequiresInternet 'foaas.com' => 443;
7use Test::More tests => 3;
8BEGIN { use_ok('WebService::FOAAS') };
9
10my $res;
11
12$res = foaas_cool 'MGV';
13is $res, 'Cool story, bro. - MGV', 'cool';
14
15$res = foaas_dosomething 'Do', 'thing', 'MGV', {shoutcloud => 1};
16is $res, 'DO THE FUCKING THING! - MGV', 'dosomething + shoutcloud';
This page took 0.01015 seconds and 4 git commands to generate.