blob: 72ce48bb09955be4ab886ddec9e8c3e48fcc8e96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package calories_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestCalories(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Calories Suite")
}
|