summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/icrowley/fake/currencies_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/icrowley/fake/currencies_test.go')
-rw-r--r--vendor/github.com/icrowley/fake/currencies_test.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/github.com/icrowley/fake/currencies_test.go b/vendor/github.com/icrowley/fake/currencies_test.go
deleted file mode 100644
index f3a07ae8e..000000000
--- a/vendor/github.com/icrowley/fake/currencies_test.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package fake
-
-import (
- "testing"
-)
-
-func TestCurrencies(t *testing.T) {
- for _, lang := range GetLangs() {
- SetLang(lang)
-
- v := Currency()
- if v == "" {
- t.Errorf("Currency failed with lang %s", lang)
- }
-
- v = CurrencyCode()
- if v == "" {
- t.Errorf("CurrencyCode failed with lang %s", lang)
- }
- }
-}