mirror of
https://github.com/danbee/micropub.git
synced 2025-03-04 08:59:13 +00:00
16 lines
260 B
Ruby
16 lines
260 B
Ruby
require "test_helper"
|
|
|
|
class HelloWorldTest < MiniTest::Test
|
|
include Rack::Test::Methods
|
|
|
|
def app
|
|
Micropub::Webserver
|
|
end
|
|
|
|
def test_hello_world
|
|
get '/'
|
|
assert last_response.ok?
|
|
assert_equal "Hello, World!", last_response.body
|
|
end
|
|
end
|