()
| 428 | } |
| 429 | |
| 430 | func (s *OrgTestSuite) TestDeleteOrganization() { |
| 431 | err := s.Store.DeleteOrganization(s.adminCtx, s.Fixtures.Orgs[0].ID) |
| 432 | |
| 433 | s.Require().Nil(err) |
| 434 | _, err = s.Store.GetOrganizationByID(s.adminCtx, s.Fixtures.Orgs[0].ID) |
| 435 | s.Require().NotNil(err) |
| 436 | s.Require().Equal("error fetching org: not found", err.Error()) |
| 437 | } |
| 438 | |
| 439 | func (s *OrgTestSuite) TestDeleteOrganizationInvalidOrgID() { |
| 440 | err := s.Store.DeleteOrganization(s.adminCtx, "dummy-org-id") |
nothing calls this directly
no test coverage detected