mirror of
https://github.com/danbee/micropub.git
synced 2025-03-04 08:59:13 +00:00
12 lines
226 B
Ruby
12 lines
226 B
Ruby
require "test_helper"
|
|
require 'minitest/hooks'
|
|
|
|
include Rack::Test::Methods
|
|
MiniTest::Spec.register_spec_type(/something/, Minitest::HooksSpec)
|
|
|
|
def app
|
|
Micropub::Webserver
|
|
end
|
|
|
|
ENV["SITE_URL"] = "https://test.danbarber.me"
|