From: Mart Lubbers Date: Wed, 12 Jul 2017 11:11:53 +0000 (+0200) Subject: remove tests X-Git-Url: https://git.martlubbers.net/?p=cloogle-irc.git;a=commitdiff_plain;h=10c67ead1fd19a7850e9e995890564f402d92b03 remove tests --- diff --git a/Makefile b/Makefile index 5b95983..0bbd16a 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ CLMLIBS:=\ -I $(CLEAN_HOME)/lib/Dynamics\ -I ./libcloogle -BINARIES:=test IRC cloogle +BINARIES:=IRC cloogle all: $(BINARIES) diff --git a/README.md b/README.md index 44bc317..b2bf47f 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,5 @@ # clean-irc IRC library for Clean -## Test -``` -make && ./test -b | nc irc.freenode.net 6667 -``` - ## Todo - Check the commands one more time on syntax -- Make a bot interface diff --git a/test.icl b/test.icl deleted file mode 100644 index fce0299..0000000 --- a/test.icl +++ /dev/null @@ -1,17 +0,0 @@ -module test - -from Data.Func import $ -import Data.Either -import Data.Maybe -import StdEnv -import IRC - -from Text import class Text(concat), instance Text String - -Start = concat $ map toString - [NICK "clooglebot" Nothing - ,USER "cloogle" "0" "cloogle" "Cloogle bot" - ,JOIN (CSepList ["#cloogle"]) Nothing - ,PRIVMSG (CSepList ["#cloogle"]) "Hello world" - ,QUIT Nothing - ]