mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-12-26 21:58:56 +01:00
11 lines
197 B
Ruby
11 lines
197 B
Ruby
require 'minitest/autorun'
|
|
require_relative './sort_tests'
|
|
require_relative './heap_sort'
|
|
|
|
class TestHeapSort < Minitest::Test
|
|
include SortTests
|
|
|
|
def sort(input)
|
|
heap_sort(input)
|
|
end
|
|
end
|