forked from fsprojects/fantomas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBarBeforeDiscriminatedUnionDeclarationTests.fs
143 lines (131 loc) · 2.95 KB
/
BarBeforeDiscriminatedUnionDeclarationTests.fs
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
module Fantomas.Tests.BarBeforeDiscriminatedUnionDeclarationTests
open NUnit.Framework
open FsUnit
open Fantomas.Tests.TestHelper
let defaultConfig = config
let config = { config with BarBeforeDiscriminatedUnionDeclaration = true }
[<Test>]
let ``single DU without fields`` () =
formatSourceString
false
"""
type A = | A
"""
config
|> prepend newline
|> should
equal
"""
type A = | A
"""
[<Test>]
let ``single DU with fields`` () =
formatSourceString
false
"""
type A = | A of int
"""
config
|> prepend newline
|> should
equal
"""
type A = | A of int
"""
[<Test>]
let ``single DU with access modifier`` () =
formatSourceString
false
"""
type Foo = private | Foo of int
"""
config
|> prepend newline
|> should
equal
"""
type Foo = private | Foo of int
"""
[<Test>]
let ``multiline DU case`` () =
formatSourceString
false
"""
[<NoEquality; NoComparison>]
type SynBinding =
SynBinding of
accessibility: SynAccess option *
kind: SynBindingKind *
mustInline: bool *
isMutable: bool *
attributes: SynAttributes *
xmlDoc: PreXmlDoc *
valData: SynValData *
headPat: SynPat *
returnInfo: SynBindingReturnInfo option *
expr: SynExpr *
range: range *
seqPoint: DebugPointAtBinding
"""
config
|> prepend newline
|> should
equal
"""
[<NoEquality; NoComparison>]
type SynBinding =
| SynBinding of
accessibility: SynAccess option *
kind: SynBindingKind *
mustInline: bool *
isMutable: bool *
attributes: SynAttributes *
xmlDoc: PreXmlDoc *
valData: SynValData *
headPat: SynPat *
returnInfo: SynBindingReturnInfo option *
expr: SynExpr *
range: range *
seqPoint: DebugPointAtBinding
"""
[<Test>]
let ``in signature file`` () =
formatSourceString
true
"""namespace meh
type Foo = | Bar of int
"""
config
|> should
equal
"""namespace meh
type Foo = | Bar of int
"""
[<Test>]
let ``exception type does not have bar`` () =
formatSourceString
false
"""
exception LoadedSourceNotFoundIgnoring of string * range (*filename*)
"""
config
|> prepend newline
|> should
equal
"""
exception LoadedSourceNotFoundIgnoring of string * range (*filename*)
"""
[<Test>]
let ``attribute before single case`` () =
formatSourceString
false
"""
type Foo = | [<SomeAttributeHere>] Foo of int
"""
config
|> prepend newline
|> should
equal
"""
type Foo = | [<SomeAttributeHere>] Foo of int
"""