Created
October 31, 2012 18:35
-
-
Save jaycfields/3988958 to your computer and use it in GitHub Desktop.
failing test
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
(expect (interaction (one "hello" {:a :b :c {:dd :ee :ff :gg}})) | |
(do | |
(one "hello") | |
(one "hello" "world" "here") | |
(one "hello" {:a 1 2 3}))) | |
; expected: (one "hello" {:a :b, :c {:ff :gg, :dd :ee}}) once | |
; | |
; got: (one "hello") | |
; {:a :b, :c {:ff :gg, :dd :ee}} are in expected, but not in actual | |
; expected is larger than actual | |
; | |
; got: (one "hello" "world" "here") | |
; "here", "world" are in actual, but not in expected | |
; {:a :b, :c {:ff :gg, :dd :ee}} are in expected, but not in actual | |
; actual is larger than expected | |
; | |
; got: (one "hello" {2 3, :a 1}) | |
; arg1: matches | |
; expected arg2: {:a :b, :c {:ff :gg, :dd :ee}} | |
; actual arg2: {2 3, :a 1} | |
; 2 with val 3 is in actual, but not in expected | |
; :c {:dd with val :ee is in expected, but not in actual | |
; :c {:ff with val :gg is in expected, but not in actual | |
; :a expected: :b | |
; was: 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment