github.com/keltia/go-ipfs@v0.3.8-0.20150909044612-210793031c63/test/sharness/lib/random-dep.go (about)

     1  // package randomdep is here to introduce a dependency in random for godep to
     2  // function properly. this way we can keep go-random vendored and not
     3  // accidentally break our tests when we change it.
     4  package randomdep
     5  
     6  import (
     7  	_ "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-random"
     8  	_ "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-random-files"
     9  )