14 lines
238 B
Go
14 lines
238 B
Go
package mfer
|
|
|
|
import "testing"
|
|
|
|
// Add those variables as well
|
|
var (
|
|
existingFolder = "./testdata/a-folder-that-exists"
|
|
nonExistingFolder = "./testdata/a-folder-that-does-not-exists"
|
|
)
|
|
|
|
func TestManifestGeneration(t *testing.T) {
|
|
|
|
}
|