aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test
diff options
context:
space:
mode:
authorEduardo Julian2017-10-20 20:36:58 -0400
committerEduardo Julian2017-10-20 20:36:58 -0400
commite2500061ed74ffccb299c2923894dd549238112b (patch)
tree2d6d8c490ed66482b1c9f88f2a7b45fdaeeccfc9 /stdlib/test
parent40190ba6f026826775e54d9e71fe4f38175b76ba (diff)
- Re-named "Host" to "Primitive".
Diffstat (limited to 'stdlib/test')
-rw-r--r--stdlib/test/test/lux/meta/type/check.lux22
1 files changed, 11 insertions, 11 deletions
diff --git a/stdlib/test/test/lux/meta/type/check.lux b/stdlib/test/test/lux/meta/type/check.lux
index 253ce5939..5fb207cec 100644
--- a/stdlib/test/test/lux/meta/type/check.lux
+++ b/stdlib/test/test/lux/meta/type/check.lux
@@ -46,7 +46,7 @@
(def: (valid-type? type)
(-> Type Bool)
(case type
- (#;Host name params)
+ (#;Primitive name params)
(list;every? valid-type? params)
(^or #;Void #;Unit (#;Ex id))
@@ -132,7 +132,7 @@
(@;checks? (type;tuple (list meta data))
(|> Ann (#;Apply meta) (#;Apply data))))))))
-(context: "Host types"
+(context: "Primitive types"
(<| (times +100)
(do @
[nameL gen-name
@@ -140,17 +140,17 @@
paramL gen-type
paramR (|> gen-type (r;filter (|>. (@;checks? paramL) not)))]
($_ seq
- (test "Host types match when they have the same name and the same parameters."
- (@;checks? (#;Host nameL (list paramL))
- (#;Host nameL (list paramL))))
+ (test "Primitive types match when they have the same name and the same parameters."
+ (@;checks? (#;Primitive nameL (list paramL))
+ (#;Primitive nameL (list paramL))))
- (test "Names matter to host types."
- (not (@;checks? (#;Host nameL (list paramL))
- (#;Host nameR (list paramL)))))
+ (test "Names matter to primitive types."
+ (not (@;checks? (#;Primitive nameL (list paramL))
+ (#;Primitive nameR (list paramL)))))
- (test "Parameters matter to host types."
- (not (@;checks? (#;Host nameL (list paramL))
- (#;Host nameL (list paramR)))))
+ (test "Parameters matter to primitive types."
+ (not (@;checks? (#;Primitive nameL (list paramL))
+ (#;Primitive nameL (list paramR)))))
))))
(context: "Type-vars"