File: symbol_test.go

package info (click to toggle)
golang-github-twstrike-otr3 0.0~git20161015.0.744856d-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,080 kB
  • sloc: ansic: 127; makefile: 76
file content (23 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package sexp

import "testing"

func Test_Symbol_First_generatesAPanic(t *testing.T) {
	defer checkForPanic(t, "not valid to call First on a Symbol")
	Symbol("ABCD").First()
}

func Test_Symbol_Second_generatesAPanic(t *testing.T) {
	defer checkForPanic(t, "not valid to call Second on a Symbol")
	Symbol("ABCD").Second()
}

func Test_Symbol_Value_returnsTheStringRepresentation(t *testing.T) {
	res := Symbol("ABB").Value()
	assertDeepEquals(t, res, "ABB")
}

func Test_Symbol_String_returnsTheStringRepresentation(t *testing.T) {
	res := Symbol("ABB").String()
	assertDeepEquals(t, res, "ABB")
}