(t *testing.T)
| 176 | } |
| 177 | |
| 178 | func TestPubRing_ApplyToMasterKey(t *testing.T) { |
| 179 | key := NewMasterKeyFromFingerprint(mockFingerprint) |
| 180 | pubring := PubRing("/some/path.pgp") |
| 181 | pubring.ApplyToMasterKey(key) |
| 182 | assert.Equal(t, string(pubring), key.pubRing) |
| 183 | } |
| 184 | |
| 185 | func TestSecRing_ApplyToMasterKey(t *testing.T) { |
| 186 | key := NewMasterKeyFromFingerprint(mockFingerprint) |
nothing calls this directly
no test coverage detected