Sha256: e1a100aae9b2e5a0c519ee78e5e2092680b227467ed71286d503cb6c9dc38b22

Contents?: true

Size: 684 Bytes

Versions: 83

Compression:

Stored size: 684 Bytes

Contents

require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper'
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes'
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/shared/take'

describe "Enumerable#first" do
  ruby_version_is '1.8.7' do
    it "returns the first element" do
      EnumerableSpecs::Numerous.new.first.should == 2
      EnumerableSpecs::Empty.new.first.should == nil
    end
  
    it "returns nil if self is empty" do
      EnumerableSpecs::Empty.new.first.should == nil
    end
    
    describe "when passed an argument" do
      it_behaves_like :enumerable_take, :first
    end
  end
end

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
rhodes-3.1.1 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.1.1.beta spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.1.0 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.1.0.beta.5 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.1.0.beta.4 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.1.0.beta.3 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.1.0.beta.2 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.1.0.beta.1 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.2 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.2.beta.1 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.1 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.1.beta.8 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.1.beta.7 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.1.beta.6 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.1.beta.5 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.1.beta.4 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.1.beta.3 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.1.beta.2 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.0 spec/framework_spec/app/spec/core/enumerable/first_spec.rb
rhodes-3.0.0.beta.7 spec/framework_spec/app/spec/core/enumerable/first_spec.rb