From 54d3d47daf9190275bbdaf8703b84969a4593451 Mon Sep 17 00:00:00 2001 From: Corey Hulen Date: Fri, 24 Mar 2017 23:31:34 -0700 Subject: PLT-6076 Adding viper libs for config file changes (#5871) * Adding viper libs for config file changes * Removing the old fsnotify lib * updating some missing libs --- .../magiconair/properties/assert/assert_test.go | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 vendor/github.com/magiconair/properties/assert/assert_test.go (limited to 'vendor/github.com/magiconair/properties/assert/assert_test.go') diff --git a/vendor/github.com/magiconair/properties/assert/assert_test.go b/vendor/github.com/magiconair/properties/assert/assert_test.go new file mode 100644 index 000000000..dcef73dfc --- /dev/null +++ b/vendor/github.com/magiconair/properties/assert/assert_test.go @@ -0,0 +1,55 @@ +// Copyright 2017 Frank Schroeder. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package assert + +import "testing" + +func TestEqualEquals(t *testing.T) { + if got, want := equal(2, "a", "a"), ""; got != want { + t.Fatalf("got %q want %q", got, want) + } +} + +func TestEqualFails(t *testing.T) { + if got, want := equal(2, "a", "b"), "\tassert_test.go:16: got a want b \n"; got != want { + t.Fatalf("got %q want %q", got, want) + } +} + +func TestPanicPanics(t *testing.T) { + if got, want := doesPanic(2, func() { panic("foo") }, ""), ""; got != want { + t.Fatalf("got %q want %q", got, want) + } +} + +func TestPanicPanicsAndMatches(t *testing.T) { + if got, want := doesPanic(2, func() { panic("foo") }, "foo"), ""; got != want { + t.Fatalf("got %q want %q", got, want) + } +} + +func TestPanicPanicsAndDoesNotMatch(t *testing.T) { + if got, want := doesPanic(2, func() { panic("foo") }, "bar"), "\tassert.go:62: got foo which does not match bar\n"; got != want { + t.Fatalf("got %q want %q", got, want) + } +} + +func TestPanicPanicsAndDoesNotPanic(t *testing.T) { + if got, want := doesPanic(2, func() {}, "bar"), "\tassert.go:65: did not panic\n"; got != want { + t.Fatalf("got %q want %q", got, want) + } +} + +func TestMatchesMatches(t *testing.T) { + if got, want := matches(2, "aaa", "a"), ""; got != want { + t.Fatalf("got %q want %q", got, want) + } +} + +func TestMatchesDoesNotMatch(t *testing.T) { + if got, want := matches(2, "aaa", "b"), "\tassert_test.go:52: got aaa which does not match b\n"; got != want { + t.Fatalf("got %q want %q", got, want) + } +} -- cgit v1.2.3-1-g7c22