Use locale directory for the tests

This commit is contained in:
Nobuyoshi Nakada 2018-12-02 11:46:13 +09:00 коммит произвёл aycabta
Родитель 1a5304228a
Коммит 8045ebbf78
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -23,9 +23,9 @@ class TestRDocI18nLocale < RDoc::TestCase
end
def test_load_nonexistent_po
File.stub(:exist?, false) do
refute @locale.load('nonexsitent-locale')
end
locale = File.join(@locale_dir, 'nonexsitent-locale')
refute_file locale
refute @locale.load(locale)
end
def test_load_existent_po