(t *testing.T)
| 111 | } |
| 112 | |
| 113 | func TestLabelGetMe(t *testing.T) { |
| 114 | t.Parallel() |
| 115 | |
| 116 | // get_me exposes private_gists/total_private_repos/owned_private_repos, |
| 117 | // which are not part of the public profile, so the result is trusted but |
| 118 | // private — never public. |
| 119 | label := LabelGetMe() |
| 120 | assert.Equal(t, IntegrityTrusted, label.Integrity) |
| 121 | assert.Equal(t, ConfidentialityPrivate, label.Confidentiality) |
| 122 | } |
| 123 | |
| 124 | func TestLabelRelease(t *testing.T) { |
| 125 | t.Parallel() |
nothing calls this directly
no test coverage detected