diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-08-02 08:12:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-02 08:12:44 +0200 |
commit | 9befb514d83e22268d00ab2c0fdd797b3742f0e9 (patch) | |
tree | 923a78009cce4531912b92e1b756a6a8f3ee6d32 /plumbing/format/config/section_test.go | |
parent | 91cdedae7faffca0a707fa47780efafe157ba47c (diff) | |
parent | e5c6fa237776870483cbe227d7f7ea943f35cb12 (diff) | |
download | go-git-9befb514d83e22268d00ab2c0fdd797b3742f0e9.tar.gz |
Merge pull request #501 from smola/config-multiple-urls
config: multiple values in RemoteConfig (URLs and Fetch)
Diffstat (limited to 'plumbing/format/config/section_test.go')
-rw-r--r-- | plumbing/format/config/section_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plumbing/format/config/section_test.go b/plumbing/format/config/section_test.go index cfd9f3f..0290386 100644 --- a/plumbing/format/config/section_test.go +++ b/plumbing/format/config/section_test.go @@ -69,3 +69,22 @@ func (s *SectionSuite) TestSubsection_RemoveOption(c *C) { } c.Assert(sect.RemoveOption("key1"), DeepEquals, expected) } + +func (s *SectionSuite) TestSubsection_SetOption(c *C) { + sect := &Subsection{ + Options: []*Option{ + {Key: "key1", Value: "value1"}, + {Key: "key2", Value: "value2"}, + {Key: "key1", Value: "value3"}, + }, + } + + expected := &Subsection{ + Options: []*Option{ + {Key: "key1", Value: "value1"}, + {Key: "key2", Value: "value2"}, + {Key: "key1", Value: "value4"}, + }, + } + c.Assert(sect.SetOption("key1", "value1", "value4"), DeepEquals, expected) +} |