forked from VonC/asciidocgo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocument_test.go
51 lines (40 loc) · 1.17 KB
/
document_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
package asciidocgo
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("the Document type", func() {
var d *Document
BeforeEach(func() {
d = NewDocument([]string{}, map[string]string{})
})
Context("a Document can be monitored", func() {
It("should be unmonitored by default", func() {
Expect(d.IsMonitored()).To(BeFalse())
})
It("should be monitored when monitoring is turned on", func() {
d.Monitor()
Expect(d.IsMonitored()).To(BeTrue())
})
})
Context("time reporting", func() {
var load, read, parse, load_render, total, write int
BeforeEach(func() {
load, _ = d.LoadTime()
read, _ = d.ReadTime()
parse, _ = d.ParseTime()
load_render, _ = d.LoadRenderTime()
total, _ = d.TotalTime()
write, _ = d.WriteTime()
})
It("should calculate load time by adding read time and parse time", func() {
Expect(load).To(Equal(read + parse))
})
It("should calculate render time by adding load time and render time", func() {
Expect(parse).To(Equal(read + parse))
})
It("should calculate total time by adding loadRender time and write time", func() {
Expect(total).To(Equal(load_render + write))
})
})
})