diff --git a/collects/honu/tests/if.rkt b/collects/honu/tests/if.rkt deleted file mode 100644 index e73429f4de..0000000000 --- a/collects/honu/tests/if.rkt +++ /dev/null @@ -1,6 +0,0 @@ -#lang honu - -if true then - 5 -else - 9 diff --git a/collects/honu/tests/list.rkt b/collects/honu/tests/list.rkt deleted file mode 100644 index 24abfbc622..0000000000 --- a/collects/honu/tests/list.rkt +++ /dev/null @@ -1,5 +0,0 @@ -#lang honu - -[x + 2: x <- [1, 2, 3]]; - -[x + y: x <- [1, 2, 3], y <- [5, 6, 7]] diff --git a/collects/honu/tests/map.rkt b/collects/honu/tests/map.rkt deleted file mode 100644 index 4c7a7a9260..0000000000 --- a/collects/honu/tests/map.rkt +++ /dev/null @@ -1,3 +0,0 @@ -#lang honu - -function(x){ x + 1 } map 1 :: 2 :: 3 :: null;