summaryrefslogtreecommitdiff
path: root/impattern/im/imdither/imdither_tests.py
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-02-13 02:41:42 -0800
committeryo mama <pepper@scannerjammer.com>2015-02-13 02:41:42 -0800
commit64f41d53728a966f10aef6d7ffbc00853d754300 (patch)
tree082f17db25c61f66aec87dc47fbc208cb17ca168 /impattern/im/imdither/imdither_tests.py
parentfab0563ff31365c2396f7353679c8239aed3ce8b (diff)
fixed some basics
Diffstat (limited to 'impattern/im/imdither/imdither_tests.py')
-rwxr-xr-ximpattern/im/imdither/imdither_tests.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/impattern/im/imdither/imdither_tests.py b/impattern/im/imdither/imdither_tests.py
deleted file mode 100755
index ee18b8d..0000000
--- a/impattern/im/imdither/imdither_tests.py
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/perl
-use LWP::UserAgent;
-use CGI;
-use Data::Dumper;
-
-my $URL = "http://localhost/cgi-bin/imdither.py";
-
-
-
-
-my $ua = LWP::UserAgent->new();
-my $response = $ua->post( $URL, { } );
-my $content = $response->decoded_content();
-
-my $cgi = CGI->new();
-print $cgi->header(), $content;
-