12 lines
225 B
Go
12 lines
225 B
Go
package test_utils
|
|
|
|
import "fmt"
|
|
|
|
func GetTestDataPath(name string) string {
|
|
return fmt.Sprintf("%s/%s.json", TestDataPath, name)
|
|
}
|
|
|
|
func GetDataPath(name string) string {
|
|
return fmt.Sprintf("%s/%s.json", DataPath, name)
|
|
}
|