github.com/aarzilli/tools@v0.0.0-20151123112009-0d27094f75e0/os/fsi/tests/0_init.go (about)

     1  // package tests runs tests on all fsi subpackages;
     2  // some of which require an appengine context;
     3  // and which must be run by goapp test.
     4  package tests
     5  
     6  import (
     7  	"fmt"
     8  	"io"
     9  )
    10  
    11  var spf func(format string, a ...interface{}) string = fmt.Sprintf
    12  var wpf func(w io.Writer, format string, a ...interface{}) (int, error) = fmt.Fprintf
    13  
    14  var dot = []string{
    15  	"fs.go",
    16  	"fs_test.go",
    17  	"httpFs.go",
    18  	"memfile.go",
    19  	"memmap.go",
    20  }
    21  
    22  var testDir = "/temp/fun"
    23  var testName = "testF.txt"