initial commit.

This commit is contained in:
Will Charczuk 2016-07-06 18:54:00 -07:00
commit 2dd44d3675
14 changed files with 930 additions and 0 deletions

30
chart_test.go Normal file
View file

@ -0,0 +1,30 @@
package chart
import (
"bytes"
"testing"
"time"
"github.com/blendlabs/go-assert"
)
func TestChartSingleSeries(t *testing.T) {
assert := assert.New(t)
now := time.Now()
c := Chart{
Title: "Hello!",
Width: 1024,
Height: 400,
Series: []Series{
TimeSeries{
Name: "Goog",
XValues: []time.Time{now.AddDate(0, 0, -3), now.AddDate(0, 0, -2), now.AddDate(0, 0, -1)},
YValues: []float64{1.0, 2.0, 3.0},
},
},
}
buffer := bytes.NewBuffer([]byte{})
c.Render(PNG, buffer)
assert.NotEmpty(buffer.Bytes())
}