(t *testing.T)
| 183 | } |
| 184 | |
| 185 | func TestSecRing_ApplyToMasterKey(t *testing.T) { |
| 186 | key := NewMasterKeyFromFingerprint(mockFingerprint) |
| 187 | secring := SecRing("/some/path.pgp") |
| 188 | secring.ApplyToMasterKey(key) |
| 189 | assert.Equal(t, string(secring), key.secRing) |
| 190 | } |
| 191 | |
| 192 | func TestMasterKey_Encrypt(t *testing.T) { |
| 193 | t.Run("with OpenPGP", func(t *testing.T) { |
nothing calls this directly
no test coverage detected