commit | e7ab5b9457b63af9c71201416ad388d58beaf48d | [log] [tgz] |
---|---|---|
author | donNewtonAlpha <donNewtonAlpha@gmail.com> | Thu Sep 27 15:09:14 2018 -0400 |
committer | donNewtonAlpha <donNewtonAlpha@gmail.com> | Thu Sep 27 15:25:50 2018 -0400 |
tree | 87534ad65ccc3ba0374eff33af230e40cae813de | |
parent | af2297488daf637e4f285d216656226b840b9026 [diff] [blame] |
SEBA-261 refactor to support serialize/deserialize Change-Id: Icdc0bc2bb06a9d1c3240c0f46e1de02953a0b017
diff --git a/internal/pkg/settings/Settings_test.go b/internal/pkg/settings/Settings_test.go index ef8419f..84dca73 100644 --- a/internal/pkg/settings/Settings_test.go +++ b/internal/pkg/settings/Settings_test.go
@@ -28,3 +28,9 @@ t.Fatalf("Failed to set debug level") } } +func TestSettings_SetDummy(t *testing.T) { + settings.SetDummy(false) + if settings.GetDummy() { + t.Fatalf("Failed to set dummy level") + } +}