Initial Commit

This commit is contained in:
2018-01-12 15:19:20 -08:00
commit 76381e004a
10 changed files with 102 additions and 0 deletions

2
spec/spec_helper.cr Normal file
View File

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

9
spec/telepathy_spec.cr Normal file
View File

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