euchre-live

Euchre web-app for the socially distant family
git clone git://git.alexkarle.com/euchre-live.git
Log | Files | Refs | README | LICENSE

commit f77017babe2e52d166bca25cd5023095ff5dc6d8 (patch)
parent 4e0d7994e87577223da4986689d3be3bb0a9b58b
Author: Alex Karle <alex@karle.co>
Date:   Sun, 29 Mar 2020 23:12:19 -0400

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?)

Diffstat:
Dcli.pl | 24------------------------
1 file changed, 0 insertions(+), 24 deletions(-)

diff --git a/cli.pl b/cli.pl @@ -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"; -}