blob: 34009d7f3d1b354e261c419014c70799130606a5 (
plain) (
blame)
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
|
package config
import (
"testing"
)
func TestNoConfig(t *testing.T) {
_, err := ReadConfig("../test/sfklase.yml")
if err == nil {
t.Errorf("Non-existent config was successfully read")
}
}
func TestGoodConfig(t *testing.T) {
_, err := ReadConfig("../test/good_config.yml")
if err != nil {
t.Errorf("Good config is not accepted: %v", err)
}
}
func TestBadConfig(t *testing.T) {
_, err := ReadConfig("../test/bad_config.yml")
if err == nil {
t.Errorf("Bad config is accepted but it shoudn't!")
}
}
|