all_test.go => {suite,decode}_test.go

This commit is contained in:
Gustavo Niemeyer 2011-01-07 21:25:58 -02:00
Родитель 910de08261
Коммит f3293401ce
2 изменённых файлов: 13 добавлений и 6 удалений

Просмотреть файл

@ -3,17 +3,11 @@ package goyaml_test
import (
. "gocheck"
"testing"
"goyaml"
"reflect"
"math"
)
func Test(t *testing.T) { TestingT(t) }
type S struct{}
var _ = Suite(&S{})
var unmarshalTests = []struct{data string; value interface{}}{
// It will encode either value as a string if asked for.

13
suite_test.go Normal file
Просмотреть файл

@ -0,0 +1,13 @@
package goyaml_test
import (
. "gocheck"
"testing"
)
func Test(t *testing.T) { TestingT(t) }
type S struct{}
var _ = Suite(&S{})