File: property_test.go

package info (click to toggle)
coyim 0.3.7-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,064 kB
  • ctags: 4,528
  • sloc: xml: 5,120; sh: 328; python: 286; makefile: 235; ruby: 51
file content (12 lines) | stat: -rw-r--r-- 284 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
package sasl

import . "gopkg.in/check.v1"

type PropertySuite struct{}

var _ = Suite(&PropertySuite{})

func (s *PropertySuite) Test_PropertyMissingError_reportsCorrectError(c *C) {
	result := PropertyMissingError{66}.Error()
	c.Assert(result, DeepEquals, "missing property 'B'")
}