Ver Fonte

Merge branch 'main' of github.com:teodesian/playwright-perl

George S. Baugh há 4 anos atrás
pai
commit
8bda2b0180
3 ficheiros alterados com 10 adições e 2 exclusões
  1. 8 0
      Changes
  2. 1 1
      dist.ini
  3. 1 1
      t/Playwright.t

+ 8 - 0
Changes

@@ -1,5 +1,13 @@
 Revision history for Playwright
 
+0.004 2021-03-19 TEODESIAN
+    [BUG FIXES]
+    - Adjust spec parser for newer Playwright spec versions
+
+0.003 2021-03-16 TEODESIAN
+    [BUG FIXES]
+    - Fix broken testsuite
+
 0.002 2021-02-10 TEODESIAN
     [BUG FIXES]
     - Declare perl 5.28 to be minimum version

+ 1 - 1
dist.ini

@@ -1,5 +1,5 @@
 name = Playwright
-version = 0.002
+version = 0.004
 author = George S. Baugh <george@troglodyne.net>
 license = MIT
 copyright_holder = Troglodyne LLC

+ 1 - 1
t/Playwright.t

@@ -7,7 +7,7 @@ use Test::Fatal qw{exception};
 use Async;
 
 my ($qxret,$qxcode) = ('',255);
-use Test::Mock::Cmd qx => sub { $? = $qxcode; return $qxret };
+use Test::Mock::Cmd qx => sub { $? = $qxcode; return $qxret }, system => sub { print $qxret };
 
 #De-Fang our BEGIN block so we can test safely
 no warnings qw{redefine once};