From: Peter Rabbitson Date: Thu, 12 Feb 2009 00:33:06 +0000 (+0000) Subject: Actually there was an empty test for it as well :) X-Git-Tag: v0.11008~235 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2f6cf72d51837a94a6c0b7f71e5dbc0cffc70386;p=dbsrgits%2FSQL-Translator.git Actually there was an empty test for it as well :) --- diff --git a/bin/sqltsh b/bin/sqltsh deleted file mode 100644 index 158af38..0000000 --- a/bin/sqltsh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/perl - -use strict; - -use Getopt::Long; -use SQL::Translator::Shell; - -my %options = (HISTFILE => glob("~/.sqltsh_history")); -GetOptions('H=s' => \$options{HISTFILE}); - -my $sqltsh = SQL::Translator::Shell->new(%options); - -$sqltsh->run(); diff --git a/t/42shell.t b/t/42shell.t deleted file mode 100644 index 5547554..0000000 --- a/t/42shell.t +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/local/bin/perl -# vim: set ft=perl: - -use strict; -use Test::More tests => 1; - -use_ok('SQL::Translator::Shell'); -