blob: 7649fdd827b99e2ff86943416711d85b30501375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package html
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestParse(t *testing.T) {
result, err := parse(`<body>hello <p color="blue">world</p></body>`)
require.NoError(t, err)
require.Equal(t, htmlTag{Name: "body", Attributes: map[string]string{}, Body: []interface{}{
"hello ",
htmlTag{Name: "p", Attributes: map[string]string{"color": "blue"}, Body: []interface{}{"world"}},
}}, result)
}
|