1
0
mirror of https://github.com/rancher/os.git synced 2025-07-18 09:01:03 +00:00
os/vendor/github.com/docker/distribution/context/version_test.go
2015-12-07 18:17:57 +05:00

20 lines
366 B
Go

package context
import "testing"
func TestVersionContext(t *testing.T) {
ctx := Background()
if GetVersion(ctx) != "" {
t.Fatalf("context should not yet have a version")
}
expected := "2.1-whatever"
ctx = WithVersion(ctx, expected)
version := GetVersion(ctx)
if version != expected {
t.Fatalf("version was not set: %q != %q", version, expected)
}
}