You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
413 B
Go
21 lines
413 B
Go
4 years ago
|
package parser
|
||
|
|
||
|
import (
|
||
|
"bufio"
|
||
|
"bytes"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestProperties(t *testing.T) {
|
||
|
const text = `(summary: hello world)`
|
||
|
var builder bytes.Buffer
|
||
|
builder.WriteString(text)
|
||
|
var lineNumber = 1
|
||
|
var state = newBaseState(bufio.NewReader(&builder), &lineNumber)
|
||
|
m, err := state.parseProperties()
|
||
|
assert.Nil(t, err)
|
||
|
assert.Equal(t, "hello world", m["summary"])
|
||
|
}
|