12 lines
187 B
Go
12 lines
187 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestSimple(t *testing.T) {
|
||
|
|
if testing.Short() {
|
||
|
|
t.Skip("skip test in short mode")
|
||
|
|
}
|
||
|
|
MainWithConfiguration("example", Options{
|
||
|
|
Yes: true,
|
||
|
|
})
|
||
|
|
}
|