12 lines
143 B
Go
12 lines
143 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestLoad(t *testing.T) {
|
|
err := Load()
|
|
assert.Nil(t, err)
|
|
}
|