mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
14 lines
327 B
Crystal
14 lines
327 B
Crystal
require "./spec_helper"
|
|
|
|
describe "Kemal::LogHandler" do
|
|
it "creates a handler" do
|
|
logger = Kemal::CommonLogHandler.new
|
|
logger.handler.should_not be nil
|
|
end
|
|
|
|
it "creates a STDOUT handler by default" do
|
|
config = Kemal.config
|
|
logger = Kemal::CommonLogHandler.new
|
|
logger.handler.should be_a IO
|
|
end
|
|
end
|