Wireframe main executable.

This commit is contained in:
Christian Schwarz
2017-04-26 20:21:18 +02:00
parent 00231ecb73
commit 9750bf3123
3 changed files with 106 additions and 55 deletions

11
cmd/config_test.go Normal file
View File

@ -0,0 +1,11 @@
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSampleConfigFileIsParsedWithoutErrors(t *testing.T) {
_, err := ParseConfig("./sampleconf/zrepl.yml")
assert.Nil(t, err)
}