mirror of
https://github.com/moby/moby.git
synced 2026-07-10 16:48:40 +00:00
15 lines
270 B
Go
15 lines
270 B
Go
package testutils
|
|
|
|
import "testing"
|
|
|
|
// SetupTestOSContext joins a new network namespace, and returns its associated
|
|
// teardown function.
|
|
//
|
|
// Example usage:
|
|
//
|
|
// defer SetupTestOSContext(t)()
|
|
//
|
|
func SetupTestOSContext(t *testing.T) func() {
|
|
return func() {}
|
|
}
|