mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
239 B
Ruby
10 lines
239 B
Ruby
require_relative '../../spec_helper'
|
|
require_relative 'fixtures/classes'
|
|
|
|
describe "Array#empty?" do
|
|
it "returns true if the array has no elements" do
|
|
[].should.empty?
|
|
[1].should_not.empty?
|
|
[1, 2].should_not.empty?
|
|
end
|
|
end
|