aboutsummaryrefslogtreecommitdiff
path: root/src/models/psql_suites_test.go
diff options
context:
space:
mode:
authorAlexander Kavon <me+git@alexkavon.com>2024-01-25 02:47:26 -0500
committerAlexander Kavon <me+git@alexkavon.com>2024-01-25 02:47:26 -0500
commit60eb2e7fe5ed3627ad4bd40286df1741529da75b (patch)
treef18d8bbbc3590183333778a4e96bebff187366b2 /src/models/psql_suites_test.go
parent60fd8a68ed87cd7352b490e88ceff3ec21855937 (diff)
update hooks to more identifiable names, update migrations to work with votes, use a common enum state typeHEADtrunk
Diffstat (limited to 'src/models/psql_suites_test.go')
-rw-r--r--src/models/psql_suites_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/models/psql_suites_test.go b/src/models/psql_suites_test.go
index b49f957..90699e5 100644
--- a/src/models/psql_suites_test.go
+++ b/src/models/psql_suites_test.go
@@ -6,9 +6,13 @@ package models
import "testing"
func TestUpsert(t *testing.T) {
+ t.Run("Comments", testCommentsUpsert)
+
t.Run("Posts", testPostsUpsert)
t.Run("Tags", testTagsUpsert)
t.Run("Users", testUsersUpsert)
+
+ t.Run("Votes", testVotesUpsert)
}