diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-08-06 11:11:41 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-08-06 11:11:41 -0400 |
commit | cbefdf8beaf3d64a44e74428079502badef60834 (patch) | |
tree | 98b0b3107fb9a3203e068c1e07b732dd8c47f4c0 /spec | |
download | zip-crystal-cbefdf8beaf3d64a44e74428079502badef60834.tar.bz2 zip-crystal-cbefdf8beaf3d64a44e74428079502badef60834.zip |
initial commit
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec_helper.cr | 2 | ||||
-rw-r--r-- | spec/zip-crystal_spec.cr | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/spec/spec_helper.cr b/spec/spec_helper.cr new file mode 100644 index 0000000..78a7a10 --- /dev/null +++ b/spec/spec_helper.cr @@ -0,0 +1,2 @@ +require "spec" +require "../src/zip-crystal" diff --git a/spec/zip-crystal_spec.cr b/spec/zip-crystal_spec.cr new file mode 100644 index 0000000..910b8f4 --- /dev/null +++ b/spec/zip-crystal_spec.cr @@ -0,0 +1,9 @@ +require "./spec_helper" + +describe Zip::Crystal do + # TODO: Write tests + + it "works" do + false.should eq(true) + end +end |