Skip to content

Instantly share code, notes, and snippets.

@bion
Created October 20, 2015 04:46
Show Gist options
  • Select an option

  • Save bion/8e6bc08218c15e1ad854 to your computer and use it in GitHub Desktop.

Select an option

Save bion/8e6bc08218c15e1ad854 to your computer and use it in GitHub Desktop.
(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