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

github.com/mapsme/twine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Auriach <p.auriach@gmail.com>2017-10-14 00:29:49 +0300
committerPhilippe Auriach <p.auriach@gmail.com>2017-10-14 00:29:49 +0300
commit86cf20478b399483b0f8813d30fc9c8b9019ddef (patch)
tree93409ed28336f0ed83bf7f4211d688aec4b6c598
parentf5af8cf6708b9c1a0b40e11c02c858a82dc578b2 (diff)
developer_language options only for one unit test
-rw-r--r--test/test_formatters.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_formatters.rb b/test/test_formatters.rb
index 895e3cd..87658b7 100644
--- a/test/test_formatters.rb
+++ b/test/test_formatters.rb
@@ -19,7 +19,7 @@ class FormatterTest < TwineTest
@empty_twine_file = Twine::TwineFile.new
@formatter = formatter_class.new
@formatter.twine_file = @empty_twine_file
- @formatter.options = { consume_all: true, consume_comments: true, developer_language: 'en' }
+ @formatter.options = { consume_all: true, consume_comments: true }
end
def assert_translations_read_correctly
@@ -199,7 +199,7 @@ class TestAppleFormatter < FormatterTest
end
def test_deducts_base_language_from_resource_folder
- #from options developer_language = 'en'
+ @formatter.options = { consume_all: true, consume_comments: true, developer_language: 'en' }
assert_equal 'en', @formatter.determine_language_given_path('Base.lproj/Localizations.strings')
end