2017-04-27 23:16:57 +02:00
|
|
|
;; Copyright 2017 the authors.
|
|
|
|
;; This file is part of Hy, which is free software licensed under the Expat
|
|
|
|
;; license. See the LICENSE.
|
|
|
|
|
2017-04-16 01:05:48 +02:00
|
|
|
(import [hy.extra.reserved [names]] [hy._compat [PY3]])
|
2017-03-02 23:49:32 +01:00
|
|
|
|
|
|
|
(defn test-reserved []
|
|
|
|
(assert (is (type (names)) frozenset))
|
|
|
|
(assert (in "and" (names)))
|
|
|
|
(when PY3
|
|
|
|
(assert (in "False" (names))))
|
|
|
|
(assert (in "pass" (names)))
|
|
|
|
(assert (in "class" (names)))
|
|
|
|
(assert (in "defclass" (names)))
|
|
|
|
(assert (in "->" (names)))
|
|
|
|
(assert (in "keyword?" (names)))
|
|
|
|
(assert (not-in "foo" (names)))
|
|
|
|
(assert (not-in "hy" (names))))
|