TheAlgorithms-Ruby/sorting/bucket_sort_test.rb

12 lines
203 B
Ruby
Raw Normal View History

2021-02-13 19:43:56 +01:00
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