aboutsummaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorIndrajith K L2024-06-20 23:51:27 +0530
committerIndrajith K L2024-06-20 23:51:27 +0530
commit11c92db4208efb6381a2fd65bcc4de427d1f21f6 (patch)
tree7c17454ff8ef59ad75ce2e48afe52815b874bfb1 /spec
downloadindrajith-dev-crystal-11c92db4208efb6381a2fd65bcc4de427d1f21f6.tar.gz
indrajith-dev-crystal-11c92db4208efb6381a2fd65bcc4de427d1f21f6.tar.bz2
indrajith-dev-crystal-11c92db4208efb6381a2fd65bcc4de427d1f21f6.zip
Adds Bare Server
Diffstat (limited to 'spec')
-rw-r--r--spec/indrajith-dev-crystal_spec.cr9
-rw-r--r--spec/spec_helper.cr2
2 files changed, 11 insertions, 0 deletions
diff --git a/spec/indrajith-dev-crystal_spec.cr b/spec/indrajith-dev-crystal_spec.cr
new file mode 100644
index 0000000..b9d7bdd
--- /dev/null
+++ b/spec/indrajith-dev-crystal_spec.cr
@@ -0,0 +1,9 @@
+require "./spec_helper"
+
+describe Indrajith::Dev::Crystal do
+ # TODO: Write tests
+
+ it "works" do
+ false.should eq(true)
+ end
+end
diff --git a/spec/spec_helper.cr b/spec/spec_helper.cr
new file mode 100644
index 0000000..01eeb8b
--- /dev/null
+++ b/spec/spec_helper.cr
@@ -0,0 +1,2 @@
+require "spec"
+require "../src/indrajith-dev-crystal"