mirror of
https://github.com/hkalexling/Mango.git
synced 2025-08-02 10:55:30 -04:00
15 lines
310 B
Crystal
15 lines
310 B
Crystal
require "./spec_helper"
|
|
|
|
describe Config do
|
|
it "creates config if it does not exist" do
|
|
with_default_config do |_, path|
|
|
File.exists?(path).should be_true
|
|
end
|
|
end
|
|
|
|
it "correctly loads config" do
|
|
config = Config.load "spec/asset/test-config.yml"
|
|
config.port.should eq 3000
|
|
end
|
|
end
|