mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
12 lines
209 B
Go
12 lines
209 B
Go
package main
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestSampleConfigFileIsParsedWithoutErrors(t *testing.T) {
|
|
_, err := ParseConfig("./sampleconf/zrepl.yml")
|
|
assert.Nil(t, err)
|
|
}
|