aboutsummaryrefslogtreecommitdiff
path: root/plugin/pkg/log/plugin_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/pkg/log/plugin_test.go')
-rw-r--r--plugin/pkg/log/plugin_test.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugin/pkg/log/plugin_test.go b/plugin/pkg/log/plugin_test.go
index b24caa48b..c02338608 100644
--- a/plugin/pkg/log/plugin_test.go
+++ b/plugin/pkg/log/plugin_test.go
@@ -19,3 +19,19 @@ func TestPlugins(t *testing.T) {
t.Errorf("Expected log to be %s, got %s", info+ts, x)
}
}
+
+func TestPluginsDateTime(t *testing.T) {
+ var f bytes.Buffer
+ const ts = "test"
+ golog.SetFlags(0) // Set to 0 because we're doing our own time, with timezone
+ golog.SetOutput(&f)
+
+ lg := NewWithPlugin("testplugin")
+
+ lg.Info(ts)
+ // rude check if the date/time is there
+ str := f.String()
+ if str[4] != '-' || str[7] != '-' || str[10] != 'T' {
+ t.Errorf("Expected date got %s...", str[:15])
+ }
+}