diff options
author | Zac Nowicki <zachnowicki@gmail.com> | 2017-06-10 19:05:16 -0400 |
---|---|---|
committer | Zac Nowicki <zachnowicki@gmail.com> | 2017-06-10 19:05:16 -0400 |
commit | 7bffddb3f750f2313909063dbca592433bd2e7ab (patch) | |
tree | dd58b2ef4ba10bf9f4d858cf38f64866710abe1a /spec | |
download | twitch-7bffddb3f750f2313909063dbca592433bd2e7ab.tar.gz twitch-7bffddb3f750f2313909063dbca592433bd2e7ab.zip |
initial commit
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec_helper.cr | 2 | ||||
-rw-r--r-- | spec/twitch_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..284aa89 --- /dev/null +++ b/spec/spec_helper.cr @@ -0,0 +1,2 @@ +require "spec" +require "../src/twitch" diff --git a/spec/twitch_spec.cr b/spec/twitch_spec.cr new file mode 100644 index 0000000..abf0780 --- /dev/null +++ b/spec/twitch_spec.cr @@ -0,0 +1,9 @@ +require "./spec_helper" + +describe Twitch do + # TODO: Write tests + + it "works" do + false.should eq(true) + end +end |