Sha256: 2d1259f8036a42e94ad38c53c9f24862e3b446a2aa97af089aaeb9b9c69efbd9

Contents?: true

Size: 1.42 KB

Versions: 7

Compression:

Stored size: 1.42 KB

Contents

require './spec/spec_helper'

describe RestPack::Serializer::SideLoading do
  context "when side-loading" do
    describe ".has_many" do

      before(:each) do
        @artist1 = FactoryGirl.create(:artist_with_albums, album_count: 2)
        @artist2 = FactoryGirl.create(:artist_with_albums, album_count: 1)
      end
      let(:side_loads) { ArtistSerializer.side_loads(models, options) }

      context "with a single model" do
        let(:models) { [@artist1] }

        context "when including :albums" do
          let(:options) { RestPack::Serializer::Options.new(ArtistSerializer, { "includes" => "albums" }) }

          it "returns side-loaded albums" do
            side_loads[:albums].count.should == @artist1.albums.count
            side_loads[:meta][:albums][:page].should == 1
            side_loads[:meta][:albums][:count].should == @artist1.albums.count
          end
        end
      end

      context "with two models" do
        let(:models) { [@artist1, @artist2] }

        context "when including :albums" do
          let(:options) { RestPack::Serializer::Options.new(ArtistSerializer, { "includes" => "albums" }) }

          it "returns side-loaded albums" do
            expected_count = @artist1.albums.count + @artist2.albums.count
            side_loads[:albums].count.should == expected_count
            side_loads[:meta][:albums][:count].should == expected_count
          end
        end
      end

    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
restpack_serializer-0.4.2 spec/serializable/side_loading/has_many_spec.rb
restpack_serializer-0.4.1 spec/serializable/side_loading/has_many_spec.rb
restpack_serializer-0.2.16 spec/serializable/side_loading/has_many_spec.rb
restpack_serializer-0.2.15 spec/serializable/side_loading/has_many_spec.rb
restpack_serializer-0.2.14 spec/serializable/side_loading/has_many_spec.rb
restpack_serializer-0.2.13 spec/serializable/side_loading/has_many_spec.rb
restpack_serializer-0.2.12 spec/serializable/side_loading/has_many_spec.rb