mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-11-16 19:50:00 +01:00
11 lines
208 B
Ruby
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
|