Add tests for bubble sort

This commit is contained in:
vzvu3k6k 2020-12-31 02:33:57 +09:00
parent 76d3fac587
commit b440aded06
2 changed files with 18 additions and 4 deletions

View file

@ -15,8 +15,11 @@ def bubble_sort(array)
array
end
puts 'Enter a list of numbers separated by space'
list = gets
bubble_sort(list)
print list
if $0 == __FILE__
puts 'Enter a list of numbers separated by space'
list = gets
bubble_sort(list)
print list
end

View file

@ -0,0 +1,11 @@
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