-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Units/parser-clojure.r/clojure-methods.b: Add for method testing.
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
documented-multimethod input.clj /^(defmulti documented-multimethod "Documentation"$/;" M multimethod.test | ||
named-method input.clj /^(defmethod test :test2 named-method$/;" m multimethod.test | ||
test input.clj /^(defmulti test$/;" M multimethod.test | ||
test input.clj /^(defmethod test nil$/;" m multimethod.test | ||
test input.clj /^(defmethod test :test$/;" m multimethod.test | ||
test input.clj /^(defmethod test :test2 named-method$/;" m multimethod.test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
(ns multimethod.test) | ||
|
||
(defmulti test | ||
(fn [type] type)) | ||
|
||
(defmulti documented-multimethod "Documentation" | ||
(fn [type] type)) | ||
|
||
(defmethod test nil | ||
[& _] | ||
nil) | ||
|
||
(defmethod test :test | ||
[& _] | ||
nil) | ||
|
||
(defmethod test :test2 named-method | ||
[& _] | ||
nil) |