(t *testing.T)
| 43 | var myFile embed.FS |
| 44 | |
| 45 | func TestEditorOpenFS(t *testing.T) { |
| 46 | b := core.NewBody() |
| 47 | errors.Log(NewEditor(b).Buffer.OpenFS(myFile, "editor.go")) |
| 48 | b.AssertRender(t, "open-fs") |
| 49 | } |
| 50 | |
| 51 | func TestEditorOpen(t *testing.T) { |
| 52 | b := core.NewBody() |
nothing calls this directly
no test coverage detected