From f77017babe2e52d166bca25cd5023095ff5dc6d8 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sun, 29 Mar 2020 23:12:19 -0400 Subject: [PATCH] cleanup: Remove unused cli.pl test script The state of our t/ tests and our /debug endpoint has far surpassed the need for this cli.pl (which might not work anyways?) --- cli.pl | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 cli.pl diff --git a/cli.pl b/cli.pl deleted file mode 100755 index c52a39c..0000000 --- a/cli.pl +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env perl -# cli.pl -- CLI version of the game -# good for testing -use strict; -use warnings; -use FindBin; -use lib "$FindBin::RealBin/lib"; -use Euchre::Game; -use Euchre::Card; - -my ($hands, $kiddey) = deal(); - -my %players = ( - Alex => $hands->[0], - Dad => $hands->[1], - Jennie => $hands->[2], - Mom => $hands->[3], -); - -for my $p (sort keys %players) { - print "$p\t"; - print map { "\t" . cid_to_name($_) } @{$players{$p}}; - print "\n"; -} -- libgit2 1.1.1