-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcode_test.go
65 lines (44 loc) · 1006 Bytes
/
code_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package hype
import (
"testing"
"github.com/stretchr/testify/require"
)
func Test_NewCodeNodes_InlineCode(t *testing.T) {
t.Parallel()
r := require.New(t)
el := NewEl("code", nil)
nodes, err := NewCodeNodes(nil, el)
r.NoError(err)
r.Len(nodes, 1)
ic, ok := nodes[0].(*InlineCode)
r.True(ok)
r.Equal(ic.Element, el)
}
func Test_NewCodeNodes_SourceCode(t *testing.T) {
t.Parallel()
r := require.New(t)
el := NewEl("code", nil)
r.NoError(el.Set("src", "main.go"))
nodes, err := NewCodeNodes(nil, el)
r.NoError(err)
r.Len(nodes, 1)
pre, ok := nodes[0].(*Element)
r.True(ok)
nodes = pre.Nodes
r.Len(nodes, 1)
sc, ok := nodes[0].(*SourceCode)
r.True(ok)
r.Equal(sc.Element, el)
}
func Test_NewCode_FencedCode(t *testing.T) {
t.Parallel()
r := require.New(t)
el := NewEl("code", nil)
r.NoError(el.Set("language", "go"))
nodes, err := NewCodeNodes(nil, el)
r.NoError(err)
r.Len(nodes, 1)
fc, ok := nodes[0].(*FencedCode)
r.True(ok)
r.Equal(fc.Element, el)
}