summaryrefslogtreecommitdiff
path: root/spec/requests/products_controller/show_products_controller_spec.rb
blob: 3ef514886cbe9f3e28370208c9119afd3fbc2d1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe 'GET /api/products/:public_id', type: :request do
  it_behaves_like 'a GET resource request' do
    let(:headers) { {} }
    let(:product) { create(:product, public_id: SecureRandom.hex(12)) }
    let(:route) { "/api/products/#{product.public_id}" }
    let(:invalid_route) { "/api/products/#{Faker::Lorem.word}" }
    let(:expected_text) do
      product.categories.concat([product.name, product.id.to_s, product.unitary_price.to_s, product.bulk_price.to_s,
                                 product.available_quantity.to_s, product.company.name, product.company.short_name])
    end
  end
end