Skip to content

Commit

Permalink
Fix t/assert2.t on certain OSX installs of perl
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Axel 'fREW' Schmidt committed Jan 24, 2014
1 parent b41dc05 commit 206b17d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
@@ -1,6 +1,7 @@
---
version: 0.55
changes:
- RT#61627/GH#29 and Fix RT#82633/GH#32, thanks Graham Knop for helping
- Change minimum perl version to 5.8.1, and thus remove dep for IO::String
---
version: 0.54
Expand Down
6 changes: 5 additions & 1 deletion t/assert2.t
Expand Up @@ -6,7 +6,11 @@ use IO::All;
use IO_All_Test;

ok(io(o_dir() . '/xxx/yyy/zzz.db')->dbm->assert->{foo} = "bar");
ok(-f o_dir() . '/xxx/yyy/zzz.db' or -f o_dir() . '/xxx/yyy/zzz.db.dir');
ok(
-f o_dir() . '/xxx/yyy/zzz.db' or
-f o_dir() . '/xxx/yyy/zzz.db.dir' or
-f o_dir() . '/xxx/yyy/zzz.db.db'
);
SKIP: {
skip "requires MLDBM", 2
unless eval { require MLDBM; 1};
Expand Down

0 comments on commit 206b17d

Please sign in to comment.