Created
October 20, 2015 04:46
-
-
Save bion/8e6bc08218c15e1ad854 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| (ns ko.score-test | |
| (:use midje.sweet) | |
| (:require [ko.score :refer :all])) | |
| (facts "about `score`" | |
| (fact | |
| (read-score) => []) | |
| (fact | |
| (read-score | |
| 1.0 [(+ 2 2)]) => [1.0 [4]]) | |
| (fact | |
| (read-score | |
| 1 [(+ 1 1) | |
| 2] | |
| 3 [(! {:name (:name a-gesture) :spec {:freq 220}})] | |
| 1 [3]) => [1 [2 2] | |
| [1 [3]])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment