in reply to Re: Checking two scalars in Test::More $expected. It works, but is it proper?
in thread Checking two scalars in Test::More $expected. It works, but is it proper?
UPDATE:
OK I think I understand now. The part I was missing was that I need to run the code in the test file and then compare the results. Like this I believe:
Doh!#!/usr/bin/perl use strict; use warnings; use Mymodule qw( values ); use Test::More qw(no_plan); BEGIN { use_ok('Mymodule', qw( values )) }; my $pig = 3; my $cow = 4; my ($animals1, $animals2) = values($pig, $cow); is ($animals1, 3, "Checking animals1"); is ($animals2, 4, "Checking animals2");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Checking two scalars in Test::More $expected. It works, but is it proper?
by ikegami (Patriarch) on Mar 30, 2009 at 17:32 UTC |