1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-07-01 20:15:25 +00:00
amfora/structs/structs_test.go

17 lines
268 B
Go
Raw Normal View History

2020-06-18 20:54:48 +00:00
package structs
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSize(t *testing.T) {
p := Page{
Url: "12345",
Content: "12345",
Links: []string{"1", "2", "3", "4", "5"},
}
assert.Equal(t, 15, p.Size(), "sizes should be equal")
}