From 60eb2e7fe5ed3627ad4bd40286df1741529da75b Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Thu, 25 Jan 2024 02:47:26 -0500 Subject: update hooks to more identifiable names, update migrations to work with votes, use a common enum state type --- src/models/psql_suites_test.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/models/psql_suites_test.go') 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) } -- cgit v1.2.3