From 0f6d95e7959d2978a869b373649fc5e49f733159 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 5 Mar 2012 22:56:18 -0600 Subject: factor out the callback stuff, make Term::Filter a role --- t/basic.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 't/basic.t') diff --git a/t/basic.t b/t/basic.t index 0aeef5a..0df6495 100644 --- a/t/basic.t +++ b/t/basic.t @@ -10,8 +10,8 @@ my $pty = IO::Pty::Easy->new(handle_pty_size => 0); my $script = <<'SCRIPT'; use strict; use warnings; -use Term::Filter; -my $term = Term::Filter->new; +use Term::Filter::Callback; +my $term = Term::Filter::Callback->new; $term->run($^X, '-ple', q[last if /^$/]); print "done\n"; SCRIPT -- cgit v1.2.3-54-g00ecf