mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-11-16 19:50:00 +01:00
4bb534f312
Add maths to directory
18 lines
324 B
Ruby
18 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
|