From a6bafbe9a52ad22c26a3a5c3091724613f6c54d4 Mon Sep 17 00:00:00 2001 From: Jesse Howarth Date: Tue, 11 Nov 2014 12:50:40 -0800 Subject: [PATCH] Add additional test --- context_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/context_test.go b/context_test.go index 198c10b..7c9a443 100644 --- a/context_test.go +++ b/context_test.go @@ -95,4 +95,5 @@ func TestContext_GlobalIsSet(t *testing.T) { expect(t, c.GlobalIsSet("bogusflag"), false) expect(t, c.GlobalIsSet("myflagGlobal"), true) expect(t, c.GlobalIsSet("myflagGlobalUnset"), false) + expect(t, c.GlobalIsSet("bogusGlobal"), false) }