mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
13 lines
227 B
Crystal
13 lines
227 B
Crystal
require "./spec_helper"
|
|
|
|
describe "Logger" do
|
|
|
|
it "logs stuff" do
|
|
IO.pipe do |r,w|
|
|
logger = Kemal::Logger.new(w)
|
|
logger.info "Info from logger"
|
|
r.gets.should match(/Info from logger/)
|
|
end
|
|
end
|
|
|
|
end
|