Files
snapd/store/stringlist_test.go

42 lines
1.1 KiB
Go

// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2018 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// not using store_test as this is a very low level test
package store
import (
"encoding/json"
. "gopkg.in/check.v1"
)
type stringListSuite struct{}
var _ = Suite(&stringListSuite{})
func (s *stringListSuite) TestStringish(c *C) {
var x stringList
c.Check(json.Unmarshal([]byte(`"hello"`), &x), IsNil)
c.Check(x, DeepEquals, stringList([]string{"hello"}))
c.Check(json.Unmarshal([]byte(`["hello", "world"]`), &x), IsNil)
c.Check(x, DeepEquals, stringList([]string{"hello", "world"}))
}