package helpers_test import ( "testing" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "github.com/vladimirok5959/golang-utils/utils/http/helpers" ) var _ = Describe("helpers", func() { Context("MinifyHtmlCode", func() { It("minify Html code", func() { Expect(helpers.MinifyHtmlCode(` Index `)).To(Equal(`Index`)) }) }) }) func TestSuite(t *testing.T) { RegisterFailHandler(Fail) RunSpecs(t, "helpers") }