mirror of
https://github.com/danbee/micropub.git
synced 2025-03-04 08:59:13 +00:00
15 lines
213 B
Ruby
15 lines
213 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.redirect?
|
|
end
|
|
end
|