TheAlgorithms-Ruby/sorting/bogo_sort_test.rb

12 lines
195 B
Ruby
Raw Normal View History

2020-10-27 05:35:41 +09:00
require 'minitest/autorun'
2020-12-31 02:29:48 +09:00
require_relative './sort_tests'
2020-10-27 05:35:41 +09:00
require_relative './bogo_sort'
class TestBogoSort < Minitest::Test
2020-12-31 02:29:48 +09:00
include SortTests
2020-10-27 05:35:41 +09:00
2020-12-31 02:29:48 +09:00
def sort(input)
input.bogosort
2020-10-27 05:35:41 +09:00
end
end