(t *testing.T)
| 46 | } |
| 47 | |
| 48 | func TestLoadEncryptedFileNoMetadata(t *testing.T) { |
| 49 | branches, err := (&Store{}).LoadEncryptedFile(PLAIN) |
| 50 | assert.Equal(t, err, sops.MetadataNotFound) |
| 51 | assert.Equal(t, branches, sops.Tree{}) |
| 52 | } |
| 53 | |
| 54 | func TestEmitPlainFile(t *testing.T) { |
| 55 | branches := sops.TreeBranches{ |
nothing calls this directly
no test coverage detected