diff options
author | Steven Schubiger <stsc@refcnt.org> | 2016-07-19 13:54:47 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2016-07-19 13:54:47 +0200 |
commit | 3585dd50b9428db6691512575181da97b10e967b (patch) | |
tree | 740bd1033725732459713a50d404338cf0c2783a /t/merge.t | |
parent | 3fea379ff56e28600ec70fbabfa0392cf8dfac08 (diff) | |
download | colorize-3585dd50b9428db6691512575181da97b10e967b.tar.gz colorize-3585dd50b9428db6691512575181da97b10e967b.tar.bz2 |
Move common data to a perl module
Diffstat (limited to 't/merge.t')
-rwxr-xr-x | t/merge.t | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,9 +2,11 @@ use strict; use warnings; +use lib qw(lib); use constant true => 1; use constant false => 0; +use Colorize::Common ':defaults'; use File::Temp qw(tmpnam); use Test::More; @@ -94,8 +96,6 @@ $tests += @merge_fail; $tests += @buffer; $tests += @pushback; -my $source = 'colorize.c'; -my $compiler = 'gcc'; my %programs; my $compile = sub |