Init scaffolding

This commit is contained in:
Anton Vakhrushev
2019-08-09 16:33:26 +03:00
commit 0533f0f1cf
10 changed files with 110 additions and 0 deletions

2
spec/spec_helper.cr Normal file
View File

@ -0,0 +1,2 @@
require "spec"
require "../src/village"

9
spec/village_spec.cr Normal file
View File

@ -0,0 +1,9 @@
require "./spec_helper"
describe Village do
# TODO: Write tests
it "works" do
false.should eq(true)
end
end