summaryrefslogtreecommitdiff
path: root/rrdformat/format_test.go
blob: e2c1aa028f238bddc01db9436193697eaa5acba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package rrdformat

import (
	"encoding/xml"
	"testing"
)

func TestXML(t *testing.T) {
	out, err := xml.Marshal(&Header{
		Version: []byte("0003"),
		PDPStep: 300,
	})
	t.Log(string(out), err)
}