mirror of
https://github.com/karust/openserp.git
synced 2026-08-05 16:53:54 +08:00
18 lines
326 B
Go
18 lines
326 B
Go
//go:build integration
|
|
// +build integration
|
|
|
|
package baidu
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/karust/openserp/core"
|
|
"github.com/karust/openserp/testutil/ithelper"
|
|
)
|
|
|
|
func TestSearchBaidu(t *testing.T) {
|
|
ithelper.RunEngineTests(t, func(b *core.Browser) core.SearchEngine {
|
|
return New(*b, core.SearchEngineOptions{})
|
|
})
|
|
}
|