You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
222 B

  1. package test
  2. import (
  3. "strings"
  4. "testing"
  5. "github.com/stretchr/testify/assert"
  6. )
  7. func TestCompileSets(t *testing.T) {
  8. parser := NewParser(strings.NewReader(SetTest0))
  9. _, err := parser.Parse()
  10. assert.Nil(t, err)
  11. }