Skip to content

Commit

Permalink
CPAN Release 0.44
Browse files Browse the repository at this point in the history
- Eliminate File::Basename from test/
  • Loading branch information
ingydotnet committed Aug 16, 2014
1 parent d07b151 commit ea79aa1
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.44
date: Sat Aug 16 02:50:17 PDT 2014
changes:
- Eliminate File::Basename from test/
---
version: 0.43
date: Fri Aug 15 20:37:55 PDT 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -124,7 +124,7 @@ endif
make check-release
make date
make test-all
make test-dist
RELEASE_TESTING=1 make test-dist
@echo '***** Releasing $(DISTDIR)'
make dist
ifneq ($(PERL_ZILLA_DIST_RELEASE_TIME),)
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.1

name: Spiffy
version: 0.43
version: 0.44
abstract: Spiffy Perl Interface Framework For You
homepage: https://metacpan.org/release/Spiffy

Expand Down
2 changes: 1 addition & 1 deletion lib/Spiffy.pm
@@ -1,6 +1,6 @@
use strict; use warnings;
package Spiffy;
our $VERSION = '0.43';
our $VERSION = '0.44';

use Carp;
require Exporter;
Expand Down
3 changes: 1 addition & 2 deletions test/base.t
@@ -1,6 +1,5 @@
use strict; use warnings;
use File::Basename;
use lib dirname(__FILE__), 'inc';
use lib (-e 't' ? 't' : 'test'), 'inc';

package XXX;
BEGIN {require Thing}
Expand Down
3 changes: 1 addition & 2 deletions test/base2.t
@@ -1,5 +1,4 @@
use File::Basename;
use lib dirname(__FILE__), 'inc';
use lib (-e 't' ? 't' : 'test'), 'inc';
use Test::More tests => 1;

eval <<'...';
Expand Down
3 changes: 1 addition & 2 deletions test/export1.t
@@ -1,6 +1,5 @@
use strict; use warnings;
use File::Basename;
use lib dirname(__FILE__), 'inc';
use lib (-e 't' ? 't' : 'test'), 'inc';

package Foo;
use Test::More tests => 20;
Expand Down
3 changes: 1 addition & 2 deletions test/filter4.t
@@ -1,6 +1,5 @@
use strict; use warnings;
use File::Basename;
use lib dirname(__FILE__), 'inc';
use lib (-e 't' ? 't' : 'test'), 'inc';

use Test::More tests => 1;
use Spiffy '-filter_save';
Expand Down
3 changes: 1 addition & 2 deletions test/filter5.t
@@ -1,6 +1,5 @@
use strict; use warnings;
use File::Basename;
use lib dirname(__FILE__), 'inc';
use lib (-e 't' ? 't' : 'test'), 'inc';

use Test::More tests => 1;
use Spiffy -filter_save;
Expand Down

0 comments on commit ea79aa1

Please sign in to comment.