Sha256: eb60bb92cec8715813450d911001679637e9fa4b7aed6c66d4ae48edda30f7f9

Contents?: true

Size: 1.12 KB

Versions: 12

Compression:

Stored size: 1.12 KB

Contents

require './spec/spec_helper'

class PrimaryModel
  include SparkApi::Primary
  attr_accessor :Primary, :id, :attributes
  def initialize(id, prime = false)
    @id = id
    @Primary = prime
    @attributes = {"Primary" => prime }
  end
end

describe SparkApi::PrimaryArray do
  it "should give me the primary element" do
    a = PrimaryModel.new(1)
    b = PrimaryModel.new(2)
    c = PrimaryModel.new(3)
    d = PrimaryModel.new(4, true)
    e = PrimaryModel.new(5)
    tester = subject.class.new([d,e])
    expect(tester.primary).to eq(d)
    tester = subject.class.new([a,b,c,d,e])
    expect(tester.primary).to eq(d)
    # Note, it doesn't care if there is more than one primary, just returns first in the list.
    b.Primary = true
    expect(tester.primary).to eq(b)
  end
  it "should return nil when there is no primary element" do
    a = PrimaryModel.new(1)
    b = PrimaryModel.new(2)
    c = PrimaryModel.new(3)
    d = PrimaryModel.new(4)
    e = PrimaryModel.new(5)
    tester = subject.class.new([])
    expect(tester.primary).to be(nil)
    tester = subject.class.new([a,b,c,d,e])
    expect(tester.primary).to be(nil)
  end
end


Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
spark_api-1.6.3 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.6.2 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.6.1 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.5.7 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.6.0 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.5.6 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.5.5 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.5.4 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.5.3 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.5.2 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.5.1 spec/unit/spark_api/primary_array_spec.rb
spark_api-1.5.0 spec/unit/spark_api/primary_array_spec.rb