github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/builtins/core/io/f_test.go (about) 1 package io 2 3 import ( 4 "testing" 5 6 "github.com/lmorg/murex/test" 7 ) 8 9 func TestLsF(t *testing.T) { 10 tests := []test.MurexTest{ 11 // f 12 { 13 Block: "f: +f", 14 Stdout: "README.md", 15 }, 16 } 17 test.RunMurexTestsRx(tests, t) 18 }