fathom/pkg/count/count_test.go

24 lines
401 B
Go
Raw Normal View History

2016-12-11 13:33:05 +00:00
package count
2016-12-11 13:50:01 +00:00
import (
"testing"
"time"
2016-12-11 13:33:05 +00:00
"github.com/usefathom/fathom/pkg/models"
)
func TestCalculatePointPercentages(t *testing.T) {
points := []*models.Point{
&models.Point{
Label: "Foo",
Value: 5,
},
}
2016-12-11 13:33:05 +00:00
points = calculatePointPercentages(points, 100)
if points[0].PercentageValue != 5.00 {
t.Errorf("Percentage value should be 5.00, is %.2f", points[0].PercentageValue)
}
2016-12-11 13:33:05 +00:00
}