mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-12-25 21:58:57 +01:00
19 lines
324 B
Ruby
19 lines
324 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'minitest/autorun'
|
||
|
require_relative './ceil'
|
||
|
|
||
|
class CeilTest < Minitest::Test
|
||
|
def test_integer
|
||
|
assert_equal Ceil.call(4), 4
|
||
|
end
|
||
|
|
||
|
def test_float_at_integer
|
||
|
assert_equal Ceil.call(4.0), 4
|
||
|
end
|
||
|
|
||
|
def test_float_not_at_integer
|
||
|
assert_equal Ceil.call(4.01), 5
|
||
|
end
|
||
|
end
|