ipld-eth-server/core/message_test.go

16 lines
285 B
Go
Raw Normal View History

2017-10-19 14:58:36 +00:00
package core_test
2017-10-19 14:22:12 +00:00
import (
2017-10-19 14:32:54 +00:00
vulcanizedb "github.com/8thlight/vulcanizedb/core"
2017-10-19 14:22:12 +00:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Vulcanizedb", func() {
It("is an example test", func() {
2017-10-19 14:32:54 +00:00
Expect(vulcanizedb.Message()).Should(Equal("Hello world"))
2017-10-19 14:22:12 +00:00
})
})