Added mycology unit tests
This commit is contained in:
parent
52321c4777
commit
0e78f3ba33
2 changed files with 99 additions and 0 deletions
32
pkg/interpreter/mycology_test.go
Normal file
32
pkg/interpreter/mycology_test.go
Normal file
|
@ -0,0 +1,32 @@
|
|||
package interpreter
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"git.adyxax.org/adyxax/gofunge98/pkg/field"
|
||||
"git.adyxax.org/adyxax/gofunge98/pkg/pointer"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestMycology(t *testing.T) {
|
||||
file, err := os.Open("../../mycology/mycology.b98")
|
||||
if err != nil {
|
||||
t.Skip("mycology test suite not found, skipping")
|
||||
}
|
||||
|
||||
f, err := field.Load(file)
|
||||
require.NoError(t, err)
|
||||
p := pointer.NewPointer()
|
||||
p.Argv = []string{"../../mycology/mycology.b98"}
|
||||
// TODO test expected output
|
||||
output := ""
|
||||
p.CharacterOutput = func(c int) {
|
||||
output += fmt.Sprintf("%c", c)
|
||||
}
|
||||
i := NewInterpreter(f, p)
|
||||
|
||||
v := i.Run()
|
||||
require.Equal(t, 15, v)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue