Sha256: 26015d9cad5e682c807c62cd9a6217ba211892a85fdf529147a5058020a711e2

Contents?: true

Size: 1.8 KB

Versions: 44

Compression:

Stored size: 1.8 KB

Contents

# frozen_string_literal: true

# Copyright (c) 2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

require 'minitest/autorun'
require 'tmpdir'
require 'loog'
require_relative '../lib/judges'
require_relative '../lib/judges/impex'

# Test.
# Author:: Yegor Bugayenko (yegor256@gmail.com)
# Copyright:: Copyright (c) 2024 Yegor Bugayenko
# License:: MIT
class TestImpex < Minitest::Test
  def test_basic
    Dir.mktmpdir do |d|
      f = File.join(d, 'foo.rb')
      impex = Judges::Impex.new(Loog::NULL, f)
      impex.import(strict: false)
      impex.export(Factbase.new)
    end
  end

  def test_strict_import
    Dir.mktmpdir do |d|
      f = File.join(d, 'x.rb')
      impex = Judges::Impex.new(Loog::NULL, f)
      impex.import(strict: false)
      impex.export(Factbase.new)
      impex.import
    end
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
judges-0.27.0 test/test_impex.rb
judges-0.26.1 test/test_impex.rb
judges-0.26.0 test/test_impex.rb
judges-0.25.2 test/test_impex.rb
judges-0.25.1 test/test_impex.rb
judges-0.25.0 test/test_impex.rb
judges-0.24.0 test/test_impex.rb
judges-0.23.0 test/test_impex.rb
judges-0.22.1 test/test_impex.rb
judges-0.22.0 test/test_impex.rb
judges-0.21.0 test/test_impex.rb
judges-0.20.0 test/test_impex.rb
judges-0.19.0 test/test_impex.rb
judges-0.18.1 test/test_impex.rb
judges-0.18.0 test/test_impex.rb
judges-0.17.0 test/test_impex.rb
judges-0.16.0 test/test_impex.rb
judges-0.15.6 test/test_impex.rb
judges-0.15.5 test/test_impex.rb
judges-0.15.4 test/test_impex.rb