-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathExample.fs
More file actions
59 lines (49 loc) · 1.15 KB
/
Example.fs
File metadata and controls
59 lines (49 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
namespace Yzl.Tests.Unit
module Example =
open Expecto
open Yzl
open System.IO
[<AutoOpen>]
module Fields =
type LanguageLevel =
| Elite
| Lame
let elite = Elite
let lame = Lame
let name = Yzl.str
let job = Yzl.str
let skill = Yzl.str
let employed = Yzl.boolean
let foods = Yzl.seq
let languages = Yzl.map
let education = Yzl.str
[<Tests>]
let tests =
testList "Generate" [
test "Example" {
let expected = File.ReadAllText("./yaml/example.yaml")
let yaml =
[ name "Martin D'vloper"
job "Developer"
skill "Elite"
employed true
foods [
"Apple"
"Orange"
"Strawberry"
"Mango"
]
languages [
"perl" .= "Elite"
"python" .= "Elite"
"pascal" .= "Lame"
]
education
!|"""
4 GCSEs
3 A-Levels
BSc in the Internet of Things
""" ]
"Rendering failed" |> Expect.equal (yaml |> Yzl.render) expected
}
]