Created
February 22, 2012 17:25
-
-
Save JakubOboza/1886181 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 'minitest/spec' | |
require 'minitest/autorun' | |
describe Array do | |
it "can be created with no arguments" do | |
Array.new.must_be_instance_of Array | |
end | |
it "can be created with a specific size" do | |
Array.new(10).size.must_equal 10 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment