summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nicksnyder/go-i18n/i18n/translation/translation_test.go
blob: 7380d5a6f9e4db6d4555306fe72e09ca18cfc810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package translation

import (
	"sort"
	"testing"
)

// Check this here to avoid unnecessary import of sort package.
var _ = sort.Interface(make(SortableByID, 0, 0))

func TestNewSingleTranslation(t *testing.T) {
	t.Skipf("not implemented")
}

func TestNewPluralTranslation(t *testing.T) {
	t.Skipf("not implemented")
}