This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Increase $Tie::Hash::VERSION to 1.05
[perl5.git] / lib / Tie / Handle / stdhandle_from_handle.t
CommitLineData
6269bcb3
MS
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6}
7
8use Test::More tests => 1;
9
10use Tie::Handle;
11
12{
13 package Foo;
14 @ISA = qw(Tie::StdHandle);
15}
16
98dc9551 17# For backwards compatibility with 5.8.x
6269bcb3 18ok( Foo->can("TIEHANDLE"), "loading Tie::Handle loads TieStdHandle" );