1
0
mirror of https://github.com/danbee/micropub.git synced 2025-03-04 08:59:13 +00:00
micropub/test/requests/hello_world_test.rb

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