From 6b6c369b624b9ddccd9a23eed78e0340db99ad85 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Sat, 27 Jun 2015 01:34:48 +0200 Subject: Add Marshal --- ber/marshal_test.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ber/marshal_test.go (limited to 'ber/marshal_test.go') diff --git a/ber/marshal_test.go b/ber/marshal_test.go new file mode 100644 index 0000000..da568ed --- /dev/null +++ b/ber/marshal_test.go @@ -0,0 +1,12 @@ +package ber + +import "testing" + +func TestMarschal(t *testing.T) { + i := 42 + b, err := Marshal(i) + if err != nil { + t.Error(err) + } + t.Log(b) +} -- cgit v1.2.3