[TEST] add output raw
This commit is contained in:
parent
6d310614ca
commit
f58ad00fec
28
output/raw/output_test.go
Normal file
28
output/raw/output_test.go
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
package raw
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/FreifunkBremen/yanic/runtime"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestOutput(t *testing.T) {
|
||||||
|
assert := assert.New(t)
|
||||||
|
|
||||||
|
out, err := Register(map[string]interface{}{})
|
||||||
|
assert.Error(err)
|
||||||
|
assert.Nil(out)
|
||||||
|
|
||||||
|
out, err = Register(map[string]interface{}{
|
||||||
|
"path": "/tmp/raw.json",
|
||||||
|
})
|
||||||
|
os.Remove("/tmp/raw.json")
|
||||||
|
assert.NoError(err)
|
||||||
|
assert.NotNil(out)
|
||||||
|
|
||||||
|
out.Save(&runtime.Nodes{})
|
||||||
|
_, err = os.Stat("/tmp/raw.json")
|
||||||
|
assert.NoError(err)
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user