moby--moby/engine/helpers_test.go

12 lines
160 B
Go
Raw Normal View History

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