mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
Add configurable startup logging as a block (#291)
Add overload for Kemal.run with just a block. This removes default logging.
This commit is contained in:
parent
42827c9a9d
commit
209a9e576c
2 changed files with 49 additions and 5 deletions
30
spec/run_spec.cr
Normal file
30
spec/run_spec.cr
Normal file
|
@ -0,0 +1,30 @@
|
|||
require "./spec_helper"
|
||||
|
||||
describe "Run" do
|
||||
it "runs a code block after starting" do
|
||||
Kemal.config.env = "test"
|
||||
make_me_true = false
|
||||
Kemal.run do
|
||||
make_me_true = true
|
||||
Kemal.stop
|
||||
end
|
||||
make_me_true.should eq true
|
||||
end
|
||||
|
||||
it "runs without a block being specified" do
|
||||
Kemal.config.env = "test"
|
||||
Kemal.run
|
||||
Kemal.config.running.should eq true
|
||||
Kemal.stop
|
||||
end
|
||||
|
||||
it "runs with just a block" do
|
||||
Kemal.config.env = "test"
|
||||
make_me_true = false
|
||||
Kemal.run do
|
||||
make_me_true = true
|
||||
Kemal.stop
|
||||
end
|
||||
make_me_true.should eq true
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue