mirror of
https://github.com/TheAlgorithms/Ruby
synced 2025-02-09 08:46:19 +01:00
Add binary_insertion_sort_test.rb
This commit is contained in:
parent
c32ffeccb0
commit
e927c673fa
1 changed files with 11 additions and 0 deletions
11
sorting/binary_insertion_sort_test.rb
Normal file
11
sorting/binary_insertion_sort_test.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
require 'minitest/autorun'
|
||||
require_relative './sort_tests'
|
||||
require_relative './binary_insertion_sort'
|
||||
|
||||
class TestBubbleSort < Minitest::Test
|
||||
include SortTests
|
||||
|
||||
def sort(input)
|
||||
binary_insertion_sort(input)
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue