Skip to content

Commit

Permalink
Revert "remove dep on IO::String"
Browse files Browse the repository at this point in the history
This reverts commit 8f1d849.

Some of the more complex examples require this class.
  • Loading branch information
coke committed Feb 22, 2017
1 parent 2a02ba2 commit 97f2eca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion META.info
Expand Up @@ -4,7 +4,7 @@
"version" : "*",
"description" : "Perl 6 documentation (tools and docs)",
"depends" : [ "URI", "File::Temp", "JSON::Fast", "Pod::To::BigPage", "Pod::To::HTML",
"OO::Monitors" ],
"OO::Monitors", "IO::String" ],
"build-depends" : [ "File::Find" ],
"provides" : {
"Perl6::Type" : "lib/Perl6/Type.pm",
Expand Down
3 changes: 2 additions & 1 deletion xt/examples-compilation.t
@@ -1,5 +1,6 @@
use v6;
use Test;
use IO::String;

use lib 'lib';
use Pod::Convenience;
Expand Down Expand Up @@ -57,7 +58,7 @@ for @files -> $file {
my $proc;
plan +@examples;

my $dummy-io = IO::Handle.new;
my $dummy-io = IO::String.new();
for @examples -> $eg {
use MONKEY-SEE-NO-EVAL;

Expand Down

0 comments on commit 97f2eca

Please sign in to comment.