Last active
June 30, 2024 14:37
-
-
Save trikitrok/6bdefaf309426ff40e29 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 fizz_buzz.t-core | |
(:use midje.sweet) | |
(:use [fizz_buzz.core])) | |
(facts "About fizz-buzz-number" | |
(fact "A number that is not a multiple of | |
neither 3 nor 5 | |
is turned into a string" | |
(fizz-buzz-number 1) => "1" | |
(fizz-buzz-number 2) => "2") | |
(fact "A number that is a multiple of 3 | |
is turned into 'Fizz'" | |
(fizz-buzz-number 3) => "Fizz" | |
(fizz-buzz-number 9) => "Fizz") | |
(fact "A number that is a multiple of 5 | |
is turned into 'Buzz'" | |
(fizz-buzz-number 5) => "Buzz" | |
(fizz-buzz-number 25) => "Buzz") | |
(fact "A number that is a multiple of | |
3 and 5 is turned into 'FizzBuzz'" | |
(fizz-buzz-number 15) => "FizzBuzz")) | |
(facts "About fizz-buzz" | |
(fact "An empty collection of numbers is | |
turned into an empty string" | |
(fizz-buzz []) => "") | |
(fact "A collection of numbers is turned into | |
a string of words separated by spaces | |
where each word resulted from applying | |
fizz-buzz-number" | |
(fizz-buzz (range 1 16)) => | |
"1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment