see if making the Term::ReadLine attr lazy helps at all...
Karen Etheridge [Sun, 19 May 2013 16:00:42 +0000 (09:00 -0700)]
Changes
lib/Devel/REPL.pm

diff --git a/Changes b/Changes
index 17b8cd7..ca06abe 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Devel-REPL
 
+  - more attempts to fix Term::ReadLine issues in tests (RT#84246, mephinet)
+
 1.003017 - 2013-04-03
   - fix issues with Term::ReadLine:Perl in tests (RT#84246) (thanks,
     Christopher McCann!)
index c174bbd..3dbf8ff 100644 (file)
@@ -13,6 +13,7 @@ use Devel::REPL::Error;
 
 has 'term' => (
   is => 'rw',
+  lazy => 1,
   default => sub { Term::ReadLine->new('Perl REPL') }
 );