Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

15 řádky
267B

  1. package template_test
  2. import (
  3. "testing"
  4. "git.wtrh.nl/patterns/gopatterns/pkg/pattern/template"
  5. "github.com/stretchr/testify/require"
  6. )
  7. func TestRenderPattern(t *testing.T) {
  8. t.Parallel()
  9. require.NoError(t, template.RenderPattern("fixtures/trouser.yaml"))
  10. }