mirror of
https://github.com/tarampampam/error-pages.git
synced 2024-08-30 18:22:40 +00:00
15 lines
229 B
Go
15 lines
229 B
Go
|
package l10n_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
|
||
|
"gh.tarampamp.am/error-pages/l10n"
|
||
|
)
|
||
|
|
||
|
func TestL10n(t *testing.T) {
|
||
|
assert.NotEmpty(t, l10n.L10n())
|
||
|
assert.Contains(t, l10n.L10n(), "data-l10n")
|
||
|
}
|