mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-11-16 19:50:00 +01:00
4bb534f312
Add maths to directory
18 lines
306 B
Ruby
18 lines
306 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'minitest/autorun'
|
|
require_relative './abs'
|
|
|
|
class AbsTest < Minitest::Test
|
|
def test_positive_number
|
|
assert_equal Abs.call(4), 4
|
|
end
|
|
|
|
def test_zero
|
|
assert_equal Abs.call(0), 0
|
|
end
|
|
|
|
def test_negative_number
|
|
assert_equal Abs.call(-9), 9
|
|
end
|
|
end
|