Add part10

This commit is contained in:
Richard Feldman
2016-09-01 01:49:25 -07:00
parent 46f4efc78b
commit 949e3ef14c
14 changed files with 497 additions and 0 deletions

18
part10/tests/Main.elm Normal file
View File

@@ -0,0 +1,18 @@
port module Main exposing (..)
import Tests
import Test.Runner.Node as Runner
import Json.Decode exposing (Value)
-- To run this:
--
-- elm-test
main : Program Value
main =
Runner.run emit Tests.all
port emit : ( String, Value ) -> Cmd msg