(t *testing.T, db database.Store)
| 355 | } |
| 356 | |
| 357 | func initSetup(t *testing.T, db database.Store) *setup { |
| 358 | usr := dbgen.User(t, db, database.User{}) |
| 359 | org := dbfake.Organization(t, db). |
| 360 | Members(usr). |
| 361 | Do() |
| 362 | return &setup{ |
| 363 | org: org.Org, |
| 364 | usr: usr, |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | type workspaceBuildArgs struct { |
| 369 | at time.Time |
no test coverage detected