summaryrefslogtreecommitdiff
path: root/spec/serializers/analytics_build_serializer_spec.rb
blob: e3b1dd93dc2b8c3517a50ce6312ed50ac00efaf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'spec_helper'

describe AnalyticsBuildSerializer do
  let(:resource) { create(:ci_build) }

  subject { described_class.new.represent(resource) }

  context 'when there is a single object provided' do
    it 'contains important elements of analyticsBuild' do
      expect(subject)
        .to include(:name, :branch, :short_sha, :date, :total_time, :url, :author)
    end
  end
end