Sha256: 1892d2d90b025138126cee4045f367803deb3c3acac2a9cea3a1ecba0e9d1343
Contents?: true
Size: 1.93 KB
Versions: 4
Compression:
Stored size: 1.93 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 NONINFINGEMENT. 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_relative '../../test__helper' require_relative '../../../lib/factbase/term' # Math test. # Author:: Yegor Bugayenko (yegor256@gmail.com) # Copyright:: Copyright (c) 2024 Yegor Bugayenko # License:: MIT class TestCasting < Minitest::Test def test_to_str t = Factbase::Term.new(:to_string, [Time.now]) assert_equal('String', t.evaluate(fact, []).class.to_s) end def test_to_integer t = Factbase::Term.new(:to_integer, [[42, 'hello']]) assert_equal('Integer', t.evaluate(fact, []).class.to_s) end def test_to_float t = Factbase::Term.new(:to_float, [[3.14, 'hello']]) assert_equal('Float', t.evaluate(fact, []).class.to_s) end def test_to_time t = Factbase::Term.new(:to_time, [%w[2023-01-01 hello]]) assert_equal('Time', t.evaluate(fact, []).class.to_s) end end
Version data entries
4 entries across 4 versions & 1 rubygems