15 lines
201 B
Go
15 lines
201 B
Go
package main_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Vulcanizedb", func() {
|
|
|
|
It("is an example test", func() {
|
|
Expect(1).Should(Equal(1))
|
|
})
|
|
|
|
})
|