Your IP : 216.73.217.90


Current Path : /proc/thread-self/root/proc/self/root/proc/thread-self/root/usr/share/doc/perl-Event/t/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/proc/thread-self/root/usr/share/doc/perl-Event/t/delete.t

#!/usr/bin/perl -w

use strict;
use Test; plan tests => 1;
use Event 0.40 qw(loop unloop);

package Foo;

my $foo=0;
sub DESTROY { ++$foo }

package main;

my $e = Event->timer(after => 0,
		     cb => sub { delete shift->w->{foo}; unloop });
$e->{foo} = bless [], 'Foo';

loop();
ok $foo;