Add initial spec files

This commit is contained in:
Glenn Y. Rolland 2020-03-02 00:21:33 +01:00
parent deff96f550
commit 1848dfd3fb
2 changed files with 11 additions and 0 deletions

9
spec/pushokku_spec.cr Normal file
View file

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

2
spec/spec_helper.cr Normal file
View file

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