TheAlgorithms-Ruby/sorting/heap_sort_test.rb

12 lines
197 B
Ruby
Raw Permalink Normal View History

2021-02-16 17:53:41 +01:00
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