Add public_folder macro

This commit is contained in:
Serdar Dogruyol 2015-12-30 20:16:04 +02:00
parent b7ec6014aa
commit aaa2ee1e31
3 changed files with 9 additions and 14 deletions

View file

@ -28,4 +28,9 @@ describe "Config" do
config.add_handler CustomTestHandler.new
config.handlers.size.should eq(1)
end
it "sets public folder" do
public_folder "/some/path/to/folder"
Kemal.config.public_folder.should eq("/some/path/to/folder")
end
end