From e3bc1251e8cb20b30d0c5a27cd1da8f147a82de7 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 23 Sep 2021 00:24:53 +0200 Subject: Began coding the interpreter (only manages the minimal example for now!) --- pkg/pointer/pointer_test.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'pkg/pointer/pointer_test.go') diff --git a/pkg/pointer/pointer_test.go b/pkg/pointer/pointer_test.go index 658528d..ccbf486 100644 --- a/pkg/pointer/pointer_test.go +++ b/pkg/pointer/pointer_test.go @@ -39,3 +39,14 @@ func TestStep(t *testing.T) { // Step is thoroughly tested in the field package p.Step(*f) require.Equal(t, defaultPointer, p) } + +func TestGet(t *testing.T) { + // File of one char + file, err := os.Open("../field/test_data/minimal.b98") + require.NoError(t, err, "Failed to open file") + defer file.Close() + f, err := field.Load(file) + p := NewPointer() + v := p.Get(*f) + require.Equal(t, int('@'), v) +} -- cgit v1.2.3