-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlinelint_test.go
72 lines (59 loc) · 1.49 KB
/
linelint_test.go
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
package main
import (
"strings"
"github.com/fernandrone/linelint/linter"
)
const textWithSingleNewLine = `
As armas e os Barões assinalados
Que da Ocidental praia Lusitana,
Por mares nunca de antes navegados
Passaram ainda além da Taprobana,
Em perigos e guerras esforçados,
Mais do que prometia a força humana,
E entre gente remota edificaram
Novo reino, que tanto sublimaram;
`
const textWithTwoNewLines = `
As armas e os Barões assinalados
Que da Ocidental praia Lusitana,
Por mares nunca de antes navegados
Passaram ainda além da Taprobana,
Em perigos e guerras esforçados,
Mais do que prometia a força humana,
E entre gente remota edificaram
Novo reino, que tanto sublimaram;
`
func Example_two_new_lines() {
c := linter.NewDefaultConfig()
c.AutoFix = true
input := Input{
Paths: []string{"-"},
Stdin: strings.NewReader(textWithTwoNewLines),
Config: c,
}
if err := run(input); err != nil {
panic(err)
}
// Output:
// As armas e os Barões assinalados
// Que da Ocidental praia Lusitana,
// Por mares nunca de antes navegados
// Passaram ainda além da Taprobana,
// Em perigos e guerras esforçados,
// Mais do que prometia a força humana,
// E entre gente remota edificaram
// Novo reino, que tanto sublimaram;
}
func Example_single_new_line() {
c := linter.NewDefaultConfig()
c.AutoFix = true
input := Input{
Paths: []string{"-"},
Stdin: strings.NewReader(textWithSingleNewLine),
Config: c,
}
if err := run(input); err != nil {
panic(err)
}
// Output:
}