diff --git a/realize/app_test.go b/realize/app_test.go deleted file mode 100644 index 05290d1..0000000 --- a/realize/app_test.go +++ /dev/null @@ -1,14 +0,0 @@ -package realize - -import ( - "reflect" - "testing" -) - -func TestInit(t *testing.T) { - actual := Init() - expected := &App{Name: AppName, Version: AppVersion, Description: AppDescription, Author: AppAuthor, Email: AppEmail} - if !reflect.DeepEqual(actual, expected) { - t.Errorf("Test failed, expected: '%s', got: '%s'", expected, actual) - } -}