moby--moby/engine/helpers_test.go

12 lines
160 B
Go
Raw Normal View History

2013-10-23 04:35:26 -04:00
package engine
import (
2013-11-07 15:19:24 -05:00
"testing"
2013-10-23 04:35:26 -04:00
)
var globalTestID string
func mkJob(t *testing.T, name string, args ...string) *Job {
return New().Job(name, args...)
2013-10-23 04:35:26 -04:00
}