mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-11-16 19:50:00 +01:00
11 lines
202 B
Ruby
11 lines
202 B
Ruby
require 'minitest/autorun'
|
|
require_relative './sort_tests'
|
|
require_relative './comb_sort'
|
|
|
|
class TestInsertionSort < Minitest::Test
|
|
include SortTests
|
|
|
|
def sort(input)
|
|
comb_sort(input)
|
|
end
|
|
end
|