Welcome to mirror list, hosted at ThFree Co, Russian Federation.

translation_test.go « translation « i18n - github.com/gohugoio/go-i18n.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4740e027eae59ee7b4bccbf36c6cfc270b581c88 (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))

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

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