Skip to content

Commit

Permalink
lanf unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
reuvenharrison committed Feb 23, 2025
1 parent 2db8edf commit 678cf1c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions checker/localizations/lang_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package localizations_test

import (
"testing"

"github.com/stretchr/testify/require"
"github.com/tufin/oasdiff/checker/localizations"
)

func TestLang_Exists(t *testing.T) {
require.Equal(t, []string{localizations.LangEn, localizations.LangRu}, localizations.GetSupportedLanguages())
}

0 comments on commit 678cf1c

Please sign in to comment.