TheAlgorithms-Ruby/sorting/shell_sort_test.rb

12 lines
200 B
Ruby
Raw Normal View History

2021-02-16 18:47:21 +01:00
require 'minitest/autorun'
require_relative './sort_tests'
require_relative './shell_sort'
class TestShellSort < Minitest::Test
include SortTests
def sort(input)
shell_sort(input)
end
end