mirror of
https://github.com/StrawberryMaster/wayback-machine-downloader.git
synced 2025-12-17 17:56:44 +00:00
9 lines
226 B
Ruby
9 lines
226 B
Ruby
|
|
require 'minitest/autorun'
|
||
|
|
require 'wayback_machine_downloader'
|
||
|
|
|
||
|
|
class WaybackMachineDownloaderTest < Minitest::Test
|
||
|
|
def test_english_hello
|
||
|
|
assert_equal "Hello world! John", WaybackMachineDownloader.hi("John")
|
||
|
|
end
|
||
|
|
end
|