ipld-eth-server/vulcanizedb_test.go

16 lines
285 B
Go
Raw Normal View History

2017-10-19 14:22:12 +00:00
package main_test
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
})
})