TheAlgorithms-Ruby/sorting/bogo_sort_test.rb

12 lines
195 B
Ruby
Raw Normal View History

2020-10-26 21:35:41 +01:00
require 'minitest/autorun'
2020-12-30 18:29:48 +01:00
require_relative './sort_tests'
2020-10-26 21:35:41 +01:00
require_relative './bogo_sort'
class TestBogoSort < Minitest::Test
2020-12-30 18:29:48 +01:00
include SortTests
2020-10-26 21:35:41 +01:00
2020-12-30 18:29:48 +01:00
def sort(input)
input.bogosort
2020-10-26 21:35:41 +01:00
end
end