diff options
author | Indrajith K L | 2024-06-20 23:51:27 +0530 |
---|---|---|
committer | Indrajith K L | 2024-06-20 23:51:27 +0530 |
commit | 11c92db4208efb6381a2fd65bcc4de427d1f21f6 (patch) | |
tree | 7c17454ff8ef59ad75ce2e48afe52815b874bfb1 /spec | |
download | indrajith-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.cr | 9 | ||||
-rw-r--r-- | spec/spec_helper.cr | 2 |
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" |