(t *testing.T)
| 151 | } |
| 152 | |
| 153 | func TestLabelCollaboratorRoster(t *testing.T) { |
| 154 | t.Parallel() |
| 155 | |
| 156 | // A collaborator roster requires push access to list, so it is never |
| 157 | // world-readable — always trusted and private. |
| 158 | label := LabelCollaboratorRoster() |
| 159 | assert.Equal(t, IntegrityTrusted, label.Integrity) |
| 160 | assert.Equal(t, ConfidentialityPrivate, label.Confidentiality) |
| 161 | } |
| 162 | |
| 163 | func TestLabelCommitContents(t *testing.T) { |
| 164 | t.Parallel() |
nothing calls this directly
no test coverage detected