github.com/rajasrinivasan/spm@v0.0.0-20200125100127-755649755f3f/src/impl/install_test.go (about)

     1  package impl
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  func TestInstall(t *testing.T) {
     8  	//Install("../tests/goodpkg.spm")
     9  	KeepWorkArea = true
    10  	PkgPassword = "Thisisagoodpassword"
    11  	Install("/tmp/sp.spm")
    12  }
    13  
    14  func TestInstallShow(t *testing.T) {
    15  	//Install("../tests/goodpkg.spm")
    16  	ShowOption = true
    17  	PkgPassword = "Thisisagoodpassword"
    18  	Install("/tmp/sp.spm")
    19  }