bbash/input_parser/test_test.go
Tobias P.L Wennberg 15eeadf5d3 initial
2025-01-10 13:29:56 +01:00

17 lines
207 B
Go

package input_parser
import (
"testing"
"fmt"
)
func TestParse(t *testing.T) {
Parse("")
Parse("hej")
got := Parse("echo \" jej asdsa dsa \"")
fmt.Println(got.Instruction)
fmt.Println(got.Args)
}