summaryrefslogtreecommitdiff
path: root/rrdformat/format_test.go
blob: 7c5711e1e9760cd5f9e0be59c59bcacf1432e859 (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: "0003",
		PDPStep: 300,
	})
	t.Log(string(out), err)
}