TheAlgorithms-Ruby/sorting/pancake_sort_test.rb

12 lines
208 B
Ruby
Raw Normal View History

2021-05-06 09:13:25 +02:00
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