bbash/input_parser/test_test.go
2025-01-12 14:26:50 +01:00

14 lines
218 B
Go

package input_parser
import (
"fmt"
"testing"
)
func TestParse(t *testing.T) {
test := parse("ls -abcd hej -ee tbtry --help - -o")
fmt.Println(test.Instruction)
fmt.Println(test.Args)
fmt.Println(test.Flags)
}