Initial commit

This commit is contained in:
Michael Miller 2018-08-18 15:33:20 -06:00
commit 630e537726
8 changed files with 108 additions and 0 deletions

2
spec/spec_helper.cr Normal file
View file

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

9
spec/spectator_spec.cr Normal file
View file

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