mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-14 10:22:42 +00:00
14 lines
217 B
Go
14 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() {
|
||
|
})
|
||
|
}
|