From 1848dfd3fb4a2c9f349e5a59ccd39ec2b353977e Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Mon, 2 Mar 2020 00:21:33 +0100 Subject: [PATCH] Add initial spec files --- spec/pushokku_spec.cr | 9 +++++++++ spec/spec_helper.cr | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 spec/pushokku_spec.cr create mode 100644 spec/spec_helper.cr diff --git a/spec/pushokku_spec.cr b/spec/pushokku_spec.cr new file mode 100644 index 0000000..e97491d --- /dev/null +++ b/spec/pushokku_spec.cr @@ -0,0 +1,9 @@ +require "./spec_helper" + +describe Pushokku 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..f87d752 --- /dev/null +++ b/spec/spec_helper.cr @@ -0,0 +1,2 @@ +require "spec" +require "../src/pushokku"