NewRun initialise the remote and local for testing and returns a run object. Call this from the tests. r.Flocal is an empty local Fs r.Fremote is an empty remote Fs
(t *testing.T)
| 193 | // r.Flocal is an empty local Fs |
| 194 | // r.Fremote is an empty remote Fs |
| 195 | func NewRun(t *testing.T) *Run { |
| 196 | return newRunIndividual(t, *Individual) |
| 197 | } |
| 198 | |
| 199 | // NewRunIndividual as per NewRun but makes an individual remote for this test |
| 200 | func NewRunIndividual(t *testing.T) *Run { |
searching dependent graphs…