TheAlgorithms-Ruby/sorting/bubble_sort_test.rb

12 lines
203 B
Ruby
Raw Normal View History

2020-12-30 18:33:57 +01:00
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