This repository has been archived on 2021-12-03. You can view files and clone it, but cannot push or open issues/pull-requests.
functional/test/functional_test.rb

15 lines
230 B
Ruby

require 'test/unit'
require 'functional'
class FunTest < Test::Unit::TestCase
def test_to_fun_exists
assert_respond_to Object, :to_fun
end
def test_to_fun_to_a
assert_equal (0..100).to_a, (0..100).to_fun.to_a
end
end