(t *testing.T)
| 170 | } |
| 171 | |
| 172 | func TestDisableOpenPGP_ApplyToMasterKey(t *testing.T) { |
| 173 | key := NewMasterKeyFromFingerprint(mockFingerprint) |
| 174 | DisableOpenPGP{}.ApplyToMasterKey(key) |
| 175 | assert.True(t, key.disableOpenPGP) |
| 176 | } |
| 177 | |
| 178 | func TestPubRing_ApplyToMasterKey(t *testing.T) { |
| 179 | key := NewMasterKeyFromFingerprint(mockFingerprint) |
nothing calls this directly
no test coverage detected