TheAlgorithms-Ruby/sorting/pancake_sort_test.rb
2021-05-06 10:13:25 +03:00

11 lines
208 B
Ruby

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