zrepl/cmd/config_test.go

12 lines
209 B
Go
Raw Normal View History

2017-04-26 20:21:18 +02:00
package main
import (
"github.com/stretchr/testify/assert"
2017-04-26 20:25:53 +02:00
"testing"
2017-04-26 20:21:18 +02:00
)
func TestSampleConfigFileIsParsedWithoutErrors(t *testing.T) {
_, err := ParseConfig("./sampleconf/zrepl.yml")
assert.Nil(t, err)
}