19 lines
275 B
Go
19 lines
275 B
Go
|
package yanic
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestLog(t *testing.T) {
|
||
|
assert := assert.New(t)
|
||
|
|
||
|
d := Dial("unix", "/tmp/yanic-database.socket")
|
||
|
assert.NotNil(d)
|
||
|
d.Start()
|
||
|
time.Sleep(time.Duration(3) * time.Minute)
|
||
|
d.Close()
|
||
|
}
|