mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
f1edf81d95
Code duplicate: two specs with the same code.
20 lines
404 B
Crystal
20 lines
404 B
Crystal
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
|
|
end
|