aboutsummaryrefslogtreecommitdiff
path: root/unicorn/Unicorn_test2.go
blob: 74cffd1b29081ccbd10c7202d27e0d15d7037ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package unicorn

import (
	"testing"
)

func TestAnimated(t *testing.T) {
	// data, err := Asset("sample.gif")
	// if err != nil {
	// 	t.Errorf("Failed to load asset %v", err)
	// }

	// g, err := gif.DecodeAll(bytes.NewReader(data))
	// if err != nil {
	// 	t.Errorf("Failed to decode gif from asset %v", err)
	// }

	// un := unicorn.NewUnicorn2()
	// un.SetGif(g)
	// un.MainLoop()
}