diff options
Diffstat (limited to 'spec/requests')
-rw-r--r-- | spec/requests/products_controller/show_products_controller_spec.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/requests/products_controller/show_products_controller_spec.rb b/spec/requests/products_controller/show_products_controller_spec.rb new file mode 100644 index 0000000..3ef5148 --- /dev/null +++ b/spec/requests/products_controller/show_products_controller_spec.rb @@ -0,0 +1,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 |