<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,12 @@
 Revision history for autodie
 
+1.997 Thu Dec  4 15:14:00 AUSEDT 2008
+        * TEST: Test::More 0.86 (and possibly 0.85) appears to
+          dislike package names that contain the apostrophe
+          character (these occur in some tests for Klingon
+          localisation).  We now skip these tests on systems
+          with Test::More &gt;= 0.85 installed.
+
 1.996 Thu Dec  4 09:07:39 AUSEDT 2008
         * FEATURE: Child classes can now provide an exception_class()
           method that returns the desired exception class, rather</diff>
      <filename>Changes</filename>
    </modified>
    <modified>
      <diff>@@ -42,16 +42,21 @@ like($@, qr/Bad exception class/, '$@ should contain bad exception class msg');
 
 ### Tests with well-formed exception class (in Klingon)
 
-my $open_success3 = eval {
-    use pujHa'ghach qw(open);         #' &lt;-- this makes my editor happy
-    open(my $fh, '&lt;', NO_SUCH_FILE);
-    1;
-};
+SKIP: {
+    skip &quot;Test::More &gt;= 0.85 doesn't speak Klingon&quot;, 4
+        if $Test::More::VERSION &gt;= 0.85;
 
-is($open_success3,undef,&quot;Open should fail&quot;);
+    my $open_success3 = eval {
+        use pujHa'ghach qw(open);         #' &lt;-- this makes my editor happy
+        open(my $fh, '&lt;', NO_SUCH_FILE);
+        1;
+    };
 
-isnt($@,&quot;&quot;,'$@ should not be empty');
+    is($open_success3,undef,&quot;Open should fail&quot;);
+
+    isnt($@,&quot;&quot;,'$@ should not be empty');
 
-isa_ok($@, &quot;pujHa'ghach::Dotlh&quot;, '$@ should be a Klingon exception');
+    isa_ok($@, &quot;pujHa'ghach::Dotlh&quot;, '$@ should be a Klingon exception');
 
-like($@, qr/Klingon exception/, '$@ should contain Klingon text');
+    like($@, qr/Klingon exception/, '$@ should contain Klingon text');
+}</diff>
      <filename>t/exception_class.t</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f35eb14c3a311da669a3dea72fc109302ad350f9</id>
    </parent>
  </parents>
  <author>
    <name>Paul Fenwick</name>
    <email>pjf@perltraining.com.au</email>
  </author>
  <url>http://github.com/pfenwick/autodie/commit/4a78d868f381cede115f88dda61dff3be0f37e53</url>
  <id>4a78d868f381cede115f88dda61dff3be0f37e53</id>
  <committed-date>2008-12-03T20:33:29-08:00</committed-date>
  <authored-date>2008-12-03T20:33:29-08:00</authored-date>
  <message>Don't test exception objects on Test::More 0.84 or above.</message>
  <tree>000eb0b10ccc94b4481a300a7d640f6b719bbe87</tree>
  <committer>
    <name>Paul Fenwick</name>
    <email>pjf@perltraining.com.au</email>
  </committer>
</commit>
