mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-11-16 19:50:00 +01:00
11 lines
200 B
Ruby
11 lines
200 B
Ruby
require 'minitest/autorun'
|
|
require_relative './sort_tests'
|
|
require_relative './gnome_sort'
|
|
|
|
class TestGnomeSort < Minitest::Test
|
|
include SortTests
|
|
|
|
def sort(input)
|
|
gnome_sort(input)
|
|
end
|
|
end
|