From: Jarkko Hietaniemi Date: Thu, 6 Sep 2001 03:08:01 +0000 (+0000) Subject: Old test begone. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a9a64313b8383ef6415745e3b359a4ca2bdfecfa;p=p5sagit%2Fp5-mst-13.2.git Old test begone. p4raw-id: //depot/perl@11906 --- diff --git a/lib/Attribute/Handlers/test.pl b/lib/Attribute/Handlers/test.pl deleted file mode 100644 index 5056fa8..0000000 --- a/lib/Attribute/Handlers/test.pl +++ /dev/null @@ -1,130 +0,0 @@ -# Before `make install' is performed this script should be runnable with -# `make test'. After `make install' it should work as `perl test.pl' - -######################### We start with some black magic to print on failure. - -BEGIN { - chdir 't' if -d 't'; - @INC = '../lib'; -} - -# Change 1..1 below to 1..last_test_to_print . -# (It may become useful if the test is moved to ./t subdirectory.) - -END {print "not ok 1\n" unless $loaded;} -use v5.6.0; -use Attribute::Handlers; -$loaded = 1; - -######################### End of black magic. - -# Insert your test code below (better if it prints "ok 13" -# (correspondingly "not ok 13") depending on the success of chunk 13 -# of the test code): - -sub ok { $::count++; push @::results, [$_[1], $_[0]?"":"not "]; } - -END { print "1..$::count\n"; - print map "$_->[1]ok $_->[0]\n", sort {$a->[0]<=>$b->[0]} @::results } - -package Test; -use warnings; -no warnings 'redefine'; - -sub UNIVERSAL::Okay :ATTR { ::ok @{$_[4]} } - -sub Dokay :ATTR(SCALAR) { ::ok @{$_[4]} } -sub Dokay :ATTR(HASH) { ::ok @{$_[4]} } -sub Dokay :ATTR(ARRAY) { ::ok @{$_[4]} } -sub Dokay :ATTR(CODE) { ::ok @{$_[4]} } - -sub Vokay :ATTR(VAR) { ::ok @{$_[4]} } - -sub Aokay :ATTR(ANY) { ::ok @{$_[4]} } - -package main; -use warnings; - -my $x1 :Okay(1,1); -my @x1 :Okay(1=>2); -my %x1 :Okay(1,3); -sub x1 :Okay(1,4) {} - -my Test $x2 :Dokay(1,5); - -package Test; -my $x3 :Dokay(1,6); -my Test $x4 :Dokay(1,7); -sub x3 :Dokay(1,8) {} - -my $y1 :Okay(1,9); -my @y1 :Okay(1,10); -my %y1 :Okay(1,11); -sub y1 :Okay(1,12) {} - -my $y2 :Vokay(1,13); -my @y2 :Vokay(1,14); -my %y2 :Vokay(1,15); -# BEGIN {eval 'sub y2 :Vokay(0,16) {}; 1' or -::ok(1,16); -# } - -my $z :Aokay(1,17); -my @z :Aokay(1,18); -my %z :Aokay(1,19); -sub z :Aokay(1,20) {}; - -package DerTest; -use base 'Test'; -use warnings; - -my $x5 :Dokay(1,21); -my Test $x6 :Dokay(1,22); -sub x5 :Dokay(1,23); - -my $y3 :Okay(1,24); -my @y3 :Okay(1,25); -my %y3 :Okay(1,26); -sub y3 :Okay(1,27) {} - -package Unrelated; - -BEGIN { eval 'my $x7 :Dokay(0,28)' or ::ok(1,28); } -my Test $x8 :Dokay(1,29); -eval 'sub x7 :Dokay(0,30) {}' or ::ok(1,30); - - -package Tie::Loud; - -sub TIESCALAR { ::ok(1,31); bless {}, $_[0] } -sub FETCH { ::ok(1,32); return 1 } -sub STORE { ::ok(1,33); return 1 } - -package Tie::Noisy; - -sub TIEARRAY { ::ok(1,$_[1]); bless {}, $_[0] } -sub FETCH { ::ok(1,35); return 1 } -sub STORE { ::ok(1,36); return 1 } -sub FETCHSIZE { 100 } - -package Tie::Rowdy; - -sub TIEHASH { ::ok(1,$_[1]); bless {}, $_[0] } -sub FETCH { ::ok(1,38); return 1 } -sub STORE { ::ok(1,39); return 1 } - -package main; - -use Attribute::Handlers autotie => { Other::Loud => Tie::Loud, - Noisy => Tie::Noisy, - UNIVERSAL::Rowdy => Tie::Rowdy, - }; - -my Other $loud : Loud; -$loud++; - -my @noisy : Noisy(34); -$noisy[0]++; - -my %rowdy : Rowdy(37); -$rowdy{key}++;