forked from MTSR/mapserver
18 lines
218 B
Go
18 lines
218 B
Go
package media
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestNew(t *testing.T) {
|
|
|
|
repo := make(map[string][]byte)
|
|
|
|
ScanDir(repo, "../", []string{"mapserver.tiles", ".git"})
|
|
|
|
for key := range repo {
|
|
fmt.Println(key)
|
|
}
|
|
}
|