From ac62c83c634c02bd9fcd2a3649ee536ec43dd4c7 Mon Sep 17 00:00:00 2001 From: Emile Date: Sun, 24 Mar 2019 14:53:19 +0100 Subject: committing untracked files --- environment_test.go | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 environment_test.go (limited to 'environment_test.go') diff --git a/environment_test.go b/environment_test.go new file mode 100644 index 0000000..907bf4e --- /dev/null +++ b/environment_test.go @@ -0,0 +1,42 @@ +package main + +import "testing" + +func Test_getEnvironment(t *testing.T) { + tests := []struct { + name string + }{ + // TODO: Add test cases. + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + getEnvironment() + }) + } +} + +func Test_getEnvironmentVars(t *testing.T) { + tests := []struct { + name string + }{ + // TODO: Add test cases. + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + getEnvironmentVars() + }) + } +} + +func Test_getFlags(t *testing.T) { + tests := []struct { + name string + }{ + // TODO: Add test cases. + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + getFlags() + }) + } +} -- cgit 1.4.1