github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/tests/utils_types_test.go (about)

     1  package tests
     2  
     3  type spiderTestContext struct {
     4  	*testSpider
     5  	parallel bool
     6  	debug    bool
     7  }
     8  
     9  type monkeyTestContext struct {
    10  	testMonkey
    11  	dir        string
    12  	configLoc  string
    13  	sessionLoc string
    14  	authUrl    string
    15  	spider     *spiderTestContext
    16  }
    17  
    18  type monkeyRunContext struct {
    19  	testMonkey
    20  	prefix  string
    21  	rr      roadRunner
    22  	isChild bool
    23  }
    24  
    25  type commandResult struct {
    26  	*monkeyRunContext
    27  
    28  	err      error
    29  	exitCode int
    30  	out1     string
    31  	out2     string
    32  }