Blob Blame History Raw
From 964b6a5927d5e82b764f30fe8ef9b1822f005e00 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Mon, 19 Nov 2018 09:06:51 +0100
Subject: [PATCH] Old TestML API moved to TestML1 name space
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

<https://github.com/testml-lang/testml/wiki/TestML-and-CPAN>
<https://bugzilla.redhat.com/show_bug.cgi?id=1650156>

Signed-off-by: Petr Písař <ppisar@redhat.com>
---
 t/test.t | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/t/test.t b/t/test.t
index 12f074f..cb5e798 100644
--- a/t/test.t
+++ b/t/test.t
@@ -2,7 +2,7 @@ use lib 'inc';
 use lib '../pegex-pm/lib';
 use lib '../testml-pm/lib';
 
-use TestML;
+use TestML1;
 
 my $testml = join('', <DATA>);
 my $debug = 0;
@@ -36,13 +36,13 @@ if (@ARGV) {
 }
 
 
-TestML->new(
+TestML1->new(
     testml => $testml,
     bridge => 'main',
 )->run;
 
-use base 'TestML::Bridge';
-use TestML::Util;
+use base 'TestML1::Bridge';
+use TestML1::Util;
 use Swim::Grammar;
 use Swim::Byte;
 use Swim::HTML;
-- 
2.17.2