From 985196f5aa2fd0ef23e6a6aee93f7600f5aef63d Mon Sep 17 00:00:00 2001 From: Sascha Andres Date: Mon, 10 Sep 2018 17:36:59 +0200 Subject: [PATCH] docs: add comments for new test code --- pkg/commands/os_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/commands/os_test.go b/pkg/commands/os_test.go index 57c92d688..aeef4a6e5 100644 --- a/pkg/commands/os_test.go +++ b/pkg/commands/os_test.go @@ -265,6 +265,7 @@ func TestOSCommandQuote(t *testing.T) { assert.EqualValues(t, expected, actual) } +// TestOSCommandQuoteSingleQuote tests the quote function with ' quotes explicitly for Linux func TestOSCommandQuoteSingleQuote(t *testing.T) { osCommand := newDummyOSCommand() @@ -277,6 +278,7 @@ func TestOSCommandQuoteSingleQuote(t *testing.T) { assert.EqualValues(t, expected, actual) } +// TestOSCommandQuoteSingleQuote tests the quote function with " quotes explicitly for Linux func TestOSCommandQuoteDoubleQuote(t *testing.T) { osCommand := newDummyOSCommand()