remove tests
authorMart Lubbers <mart@martlubbers.net>
Wed, 12 Jul 2017 11:11:53 +0000 (13:11 +0200)
committerMart Lubbers <mart@martlubbers.net>
Wed, 12 Jul 2017 11:11:53 +0000 (13:11 +0200)
Makefile
README.md
test.icl [deleted file]

index 5b95983..0bbd16a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ CLMLIBS:=\
        -I $(CLEAN_HOME)/lib/Dynamics\
        -I ./libcloogle
 
        -I $(CLEAN_HOME)/lib/Dynamics\
        -I ./libcloogle
 
-BINARIES:=test IRC cloogle
+BINARIES:=IRC cloogle
 
 all: $(BINARIES)
 
 
 all: $(BINARIES)
 
index 44bc317..b2bf47f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,11 +1,5 @@
 # clean-irc
 IRC library for Clean
 
 # clean-irc
 IRC library for Clean
 
-## Test
-```
-make && ./test -b | nc irc.freenode.net 6667
-```
-
 ## Todo
 - Check the commands one more time on syntax
 ## 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 (file)
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
-       ]