diff options
| author | Matthew Hall <hallmatthew314@gmail.com> | 2022-08-29 17:53:29 +1200 |
|---|---|---|
| committer | Matthew Hall <hallmatthew314@gmail.com> | 2022-08-29 17:53:29 +1200 |
| commit | 3ec262b17620424d0e1c7b9411f6757c609238f6 (patch) | |
| tree | 803ac267b4c1707ca717213395dbb4c34372ebcf /spec | |
Initial commit
Diffstat (limited to 'spec')
| -rw-r--r-- | spec/flint_spec.cr | 9 | ||||
| -rw-r--r-- | spec/spec_helper.cr | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/spec/flint_spec.cr b/spec/flint_spec.cr new file mode 100644 index 0000000..bc30315 --- /dev/null +++ b/spec/flint_spec.cr @@ -0,0 +1,9 @@ +require "./spec_helper" + +describe Flint 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..075d2f8 --- /dev/null +++ b/spec/spec_helper.cr @@ -0,0 +1,2 @@ +require "spec" +require "../src/flint" |
