Last active
March 16, 2016 02:07
-
-
Save mambocab/bd4354c54d0261137dfc to your computer and use it in GitHub Desktop.
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
require "spec" | |
module ReturnsStringList | |
def self.get_string_list | |
[] of String | |
end | |
end | |
describe ReturnsStringList do | |
describe "#get_string_list" do | |
it "doesn't seem to enforce types" do | |
ReturnsStringList.get_string_list().should eq([] of Int32) | |
end | |
end | |
end |
Author
mambocab
commented
Mar 16, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment