Skip to content

Instantly share code, notes, and snippets.

@tonini
Created October 24, 2013 13:06
Show Gist options
  • Save tonini/7136925 to your computer and use it in GitHub Desktop.
Save tonini/7136925 to your computer and use it in GitHub Desktop.
(ert-deftest test-flatten-of-list ()
(should (equal (elixir-mix-flatten '(1 2 (3 4) 5))
'(1 2 3 4 5)))
(should (equal (elixir-mix-flatten '(1 2 ("wood" "fire" (3)) 4 5))
'(1 2 "wood" "fire" 3 4 5))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment