14 lines
199 B
Go
14 lines
199 B
Go
package service
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestWatchSideBar(t *testing.T) {
|
|
convey.Convey("Archive3", t, func(ctx convey.C) {
|
|
s.WatchSideBar()
|
|
})
|
|
}
|