Mark helper function as unexported

This commit is contained in:
Deluan 2020-05-01 09:17:21 -04:00
parent 9b817edd1a
commit dbde5330bd
3 changed files with 6 additions and 6 deletions

View file

@ -9,7 +9,7 @@ import (
var _ = Describe("Helpers", func() {
Describe("Exists", func() {
It("constructs the correct EXISTS query", func() {
e := Exists("album", squirrel.Eq{"id": 1})
e := exists("album", squirrel.Eq{"id": 1})
sql, args, err := e.ToSql()
Expect(sql).To(Equal("exists (select 1 from album where id = ?)"))
Expect(args).To(Equal([]interface{}{1}))