Skip to content

Instantly share code, notes, and snippets.

@JakubOboza
Created February 22, 2012 17:25
Show Gist options
  • Save JakubOboza/1886181 to your computer and use it in GitHub Desktop.
Save JakubOboza/1886181 to your computer and use it in GitHub Desktop.
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