From: Bill Erickson Date: Mon, 1 Oct 2012 20:19:39 +0000 (-0400) Subject: rename edi reader test script; chmod +x X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a3738c76bdc41cd942b384df06e70d59f504882e;p=evergreen%2Fequinox.git rename edi reader test script; chmod +x Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/support-scripts/test-scripts/edi_parser.pl b/Open-ILS/src/support-scripts/test-scripts/edi_parser.pl deleted file mode 100644 index 242f90579c..0000000000 --- a/Open-ILS/src/support-scripts/test-scripts/edi_parser.pl +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/perl -use strict; use warnings; -use OpenILS::Utils::EDIReader; -use Data::Dumper; - -my $reader = OpenILS::Utils::EDIReader->new; -my $msgs = $reader->read_file(shift()); -print Dumper($msgs); - diff --git a/Open-ILS/src/support-scripts/test-scripts/edi_reader.pl b/Open-ILS/src/support-scripts/test-scripts/edi_reader.pl new file mode 100755 index 0000000000..242f90579c --- /dev/null +++ b/Open-ILS/src/support-scripts/test-scripts/edi_reader.pl @@ -0,0 +1,9 @@ +#!/usr/bin/perl +use strict; use warnings; +use OpenILS::Utils::EDIReader; +use Data::Dumper; + +my $reader = OpenILS::Utils::EDIReader->new; +my $msgs = $reader->read_file(shift()); +print Dumper($msgs); +