Sha256: 43a05aaa2de2970f9ac62cf220774293d50b5697021a1e2ccca46479812c836d
Contents?: true
Size: 1.78 KB
Versions: 26
Compression:
Stored size: 1.78 KB
Contents
# frozen_string_literal: true # MIT License # # Copyright (c) 2024 Zerocracy # # 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 'factbase' require_relative '../test__helper' require_relative '../../lib/fbe/copy' # Test. # Author:: Yegor Bugayenko (yegor256@gmail.com) # Copyright:: Copyright (c) 2024 Zerocracy # License:: MIT class TestCopy < Minitest::Test def test_simple_copy fb = Factbase.new f1 = fb.insert f1._id = 1 f1.foo = 42 f2 = fb.insert f2._id = 2 Fbe.copy(f1, f2) assert_equal(2, f2._id) assert_equal(42, f2.foo) end def test_with_except fb = Factbase.new f1 = fb.insert f1._id = 1 f1.foo = 42 f2 = fb.insert f2._id = 2 Fbe.copy(f1, f2, except: ['foo']) assert(f2['foo'].nil?) end end
Version data entries
26 entries across 26 versions & 1 rubygems