Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > e96a4415cf55f3e0af0d80bf14db5039 > files > 52

perl-Test-Unit-0.250.0-1mdv2010.0.noarch.rpm

#!/usr/bin/perl -w

use strict;

use Experimental::Sample;
use Test::Unit::Procedural;

use constant DEBUG => 0;

# code to be tested will be somewhere around here

# define tests, set_up and tear_down

sub test_ok_1 {
	assert(23 == 23);
}

sub test_ok_2 {
	assert(42 == 42);
}

sub test_ok_3 {
	my $sample = new Experimental::Sample();
        $sample->name( 'Joe' );
	assert( 'Joe' eq $sample->name() );
}

sub set_up {
	print "hello world\n" if DEBUG;
}

sub tear_down {
	print "leaving world again\n" if DEBUG;
}

# and run them


create_suite( 'Experimental::Sample' );
create_suite;
run_suite();