-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexamples_test.go
53 lines (49 loc) · 1.04 KB
/
examples_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
package main
import (
"os"
)
func ExampleHello() {
os.Setenv("ZCONFIG", "examples/hello.yaml")
realMain([]string{})
realMain([]string{"hello"})
realMain([]string{"hello", "world"})
realMain([]string{"hello.world"})
realMain([]string{"hello", "script"})
realMain([]string{"hello", "python"})
// Output:
// hello world
// bye world
// hello you
// bye you
// hello world
// bye world
// hello world
// bye world
// hello script
// hello python
}
func ExampleEcho() {
os.Setenv("ZCONFIG", "examples/hello.yaml")
realMain([]string{"echo", "hello"})
realMain([]string{"echo", "twice", "hi"})
// Output:
// hello
// hi
// hi
}
func ExampleEnv() {
os.Setenv("ZCONFIG", "examples/hello.yaml")
os.Unsetenv("MESSAGE")
realMain([]string{"echo.env.message"})
os.Setenv("MESSAGE", "system")
realMain([]string{"echo.env.message"})
os.Unsetenv("MESSAGE")
realMain([]string{"echo", "env", "message2"})
os.Setenv("MESSAGE", "system")
realMain([]string{"echo", "env", "message2"})
// Output:
// message
// system
// message2
// system
}