summaryrefslogtreecommitdiff
path: root/spec/serializers/cluster_serializer_spec.rb
blob: 1ac6784d28fe00af4b2f1b99b906fd62772e85b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'spec_helper'

describe ClusterSerializer do
  let(:serializer) do
    described_class.new
  end

  describe '#represent_status' do
    subject { serializer.represent_status(resource) }

    context 'when represents only status' do
      let(:resource) { create(:gcp_cluster, :errored) }

      it 'serializes only status' do
        expect(subject.keys).to contain_exactly(:status, :status_reason)
      end
    end
  end
end