Created
October 20, 2018 16:01
-
-
Save hanneskaeufler/d8a1b7880515d5b09960c51f6b67b923 to your computer and use it in GitHub Desktop.
Improved test-suite
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# valid.cr | |
def valid? | |
true | |
end | |
# valid_spec.cr | |
require "./valid" | |
require "spec" | |
describe "valid?" do | |
it "works" do | |
valid?.should eq true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment