summaryrefslogtreecommitdiff
path: root/spec/serializers/serverless/domain_entity_spec.rb
blob: bdf0ccb176c1e16d50e4c6110081aa64e5270a0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

describe Serverless::DomainEntity do
  describe '#as_json' do
    let(:domain) { create(:pages_domain, :instance_serverless) }

    subject { described_class.new(domain).as_json }

    it 'has an id' do
      expect(subject[:id]).to eq(domain.id)
    end

    it 'has a domain' do
      expect(subject[:domain]).to eq(domain.domain)
    end
  end
end