summaryrefslogtreecommitdiff
path: root/src/hub/src/spreadspace.org/sfive/s5store_test.go
blob: 770852599f983b0080bbcac81f9d539806ac00ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package sfive

import (
	"testing"
	"time"
)

func TestStuff(t *testing.T) {
	gd := initDb()
	dat := dataUpdateDb{-1, DataUpdate{Data: SourceData{BytesSent: 1, ClientCount: 3, BytesReceived: 1}, StartTime: time.Date(2014, time.August, 24, 14, 35, 33, 847282000, time.UTC), Duration: 5000}}
	gd.Insert(dat)
	// _ = gd.Db
}