()
| 196 | } |
| 197 | |
| 198 | func (s *UserTestSuite) TestHasAdminUserNoAdmin() { |
| 199 | hasAdmin := s.Store.HasAdminUser(context.Background()) |
| 200 | |
| 201 | // initially, we don't have any admin users in the store |
| 202 | s.Require().False(hasAdmin) |
| 203 | } |
| 204 | |
| 205 | func (s *UserTestSuite) TestHasAdminUser() { |
| 206 | // create an admin user |
nothing calls this directly
no test coverage detected