mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-12-26 21:58:56 +01:00
11 lines
203 B
Ruby
11 lines
203 B
Ruby
require 'minitest/autorun'
|
|
require_relative './sort_tests'
|
|
require_relative './bubble_sort'
|
|
|
|
class TestBubbleSort < Minitest::Test
|
|
include SortTests
|
|
|
|
def sort(input)
|
|
bubble_sort(input)
|
|
end
|
|
end
|