TheAlgorithms-Ruby/sorting/bucket_sort_test.rb
2021-02-17 02:09:59 +09:00

11 lines
203 B
Ruby

require 'minitest/autorun'
require_relative './sort_tests'
require_relative './bucket_sort'
class TestBucketSort < Minitest::Test
include SortTests
def sort(input)
bucket_sort(input)
end
end