Sha256: dd190f15f742215a7c0bac2bc6642afd61dfdb56cfedb35c6eb2add8ba44efa1

Contents?: true

Size: 1.19 KB

Versions: 30

Compression:

Stored size: 1.19 KB

Contents

# -*- coding: utf-8 -*-
#
# Copyright (C) 2012-2013  Kouhei Sutou <kou@clear-code.com>
#
# 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 "fileutils"
require "tmpdir"
require "tempfile"
require "time"

require "gettext"

module GetTextTestUtils
  module_function
  def fixture_path(*components)
    File.join(File.dirname(__FILE__), "fixtures", *components)
  end

  def locale_path
    File.join(File.dirname(__FILE__), "locale")
  end

  def setup_tmpdir
    @tmpdir = Dir.mktmpdir
  end

  def teardown_tmpdir
    FileUtils.rm_rf(@tmpdir, :secure => true) if @tmpdir
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
gettext-3.2.9 test/gettext-test-utils.rb
gettext-3.2.8 test/gettext-test-utils.rb
gettext-3.2.7 test/gettext-test-utils.rb
gettext-3.2.6 test/gettext-test-utils.rb
gettext-3.2.5 test/gettext-test-utils.rb
gettext-3.2.4 test/gettext-test-utils.rb
gettext-3.2.3 test/gettext-test-utils.rb
gettext-3.2.2 test/gettext-test-utils.rb
gettext-3.2.1 test/gettext-test-utils.rb
gettext-3.2.0 test/gettext-test-utils.rb
gettext-3.1.9 test/gettext-test-utils.rb
gettext-3.1.8 test/gettext-test-utils.rb
gettext-3.1.7 test/gettext-test-utils.rb
gettext-3.1.6 test/gettext-test-utils.rb
gettext-3.1.5 test/gettext-test-utils.rb
gettext-3.1.4 test/gettext-test-utils.rb
gettext-3.1.3 test/gettext-test-utils.rb
gettext-3.1.2 test/gettext-test-utils.rb
gettext-3.1.1 test/gettext-test-utils.rb
gettext-3.1.0 test/gettext-test-utils.rb