mirror of https://github.com/markbates/pkger.git
why?
This commit is contained in:
parent
b40b98d739
commit
0b8a69abe2
|
@ -1,6 +1,7 @@
|
||||||
package parser
|
package parser
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
@ -36,6 +37,9 @@ func Test_Parser_Ref(t *testing.T) {
|
||||||
|
|
||||||
files, err := res.Files()
|
files, err := res.Files()
|
||||||
r.NoError(err)
|
r.NoError(err)
|
||||||
|
for _, f := range files {
|
||||||
|
fmt.Println(f.Path)
|
||||||
|
}
|
||||||
r.Len(files, 25)
|
r.Len(files, 25)
|
||||||
|
|
||||||
for _, f := range files {
|
for _, f := range files {
|
||||||
|
|
Loading…
Reference in New Issue