mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-13 01:42:41 +00:00
13 lines
217 B
Go
13 lines
217 B
Go
// +build integration
|
|
|
|
//Package performance provides gucumber integration tests support.
|
|
package performance
|
|
|
|
import (
|
|
"github.com/gucumber/gucumber"
|
|
)
|
|
|
|
func init() {
|
|
gucumber.Before("@performance", func() {
|
|
})
|
|
}
|