58. describe Array, quot;with some entriesquot; do
before(:each) do
@array = %w(A B C)
end
it quot;should not be nilquot; do
@array.should_not be_nil
end
it quot;should last element is 'C'quot; do
@array.last.should == 'C'
end
end
61. describe Array, quot;with some entriesquot; do
before(:each) do
@array = %w(A B C)
end
it quot;should not be nilquot; do
@array.should_not be_nil
end
it quot;should last element is 'C'quot; do
@array.last.should == 'C'
end
end