18 lines
268 B
Go
18 lines
268 B
Go
package absolute
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.foosoft.net/alex/goldsmith"
|
|
"git.foosoft.net/alex/goldsmith/harness"
|
|
)
|
|
|
|
func Test(self *testing.T) {
|
|
harness.Validate(
|
|
self,
|
|
func(gs *goldsmith.Goldsmith) {
|
|
gs.Chain(New().BaseUrl("https://foosoft.net"))
|
|
},
|
|
)
|
|
}
|