Sha256: cdc1921e353361120980c180fff6495f6be388cd2d3e8aefc316e0f6a27716a7
Contents?: true
Size: 1.77 KB
Versions: 8
Compression:
Stored size: 1.77 KB
Contents
# -*- coding: utf-8 -*- # # Copyright (C) 2012 Kouhei Sutou <kou@clear-code.com> # Copyright (C) 2012 Haruka Yoshihara <yoshihara@clear-code.com> # Copyright (C) 2010 masone (Christian Felder) <ema@rh-productions.ch> # Copyright (C) 2009 Masao Mutoh # Copyright (C) 2009 Vladimir Dobriakov <vladimir@geekq.net> # # License: Ruby's or LGPL # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. require 'gettext' require 'gettext/tools/xgettext.rb' class TestPoGeneration < Test::Unit::TestCase def test_extracted_comments input_file = File.join(File.dirname(__FILE__), 'fixtures/_.rb') res = "" Dir.mktmpdir do |dir| Dir.chdir(dir) do out = "comments.pot" GetText::Tools::XGetText.run(input_file, "-o", out) res = File.read(out) end end # Use following to debug the content of the # created file: File.open('/tmp/test.po', 'w').write(res) assert_match '#. "Fran\u00e7ois" or (with HTML entities) "François".', res assert_no_match /Ignored/, res, 'Only comments starting with TRANSLATORS should be extracted' assert_no_match /TRANSLATORS: This is a proper name/, res, 'The prefix "TRANSLATORS:" should be skipped' end end
Version data entries
8 entries across 8 versions & 1 rubygems