github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/lang/expressions/parse_quoteBT_test.go (about)

     1  package expressions
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/lmorg/murex/test"
     7  )
     8  
     9  func TestParseQuoteBackTicks(t *testing.T) {
    10  	tests := []test.MurexTest{
    11  		{
    12  			Block:  "echo `foobar`",
    13  			Stdout: "'foobar'\n",
    14  		},
    15  	}
    16  
    17  	test.RunMurexTests(tests, t)
    18  }