The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#! /usr/bin/perl -w
# Basic test suite
# Copyright (c) 2007 imacat. All rights reserved. This program is free
# software; you can redistribute it and/or modify it under the same terms
# as Perl itself.

use strict;
use warnings;
use Test;

BEGIN { plan tests => 1 }

use vars qw($r);

$r = eval {
    use Acme::GuessNumber;
    guess_number(25, HURRY_UP);
    return 1;
};
# 1
ok($r, 1);