wedding-planner/spec/requests/tables_arrangements_spec.rb
Manuel Bustillo 5cbc81c498
All checks were successful
Check usage of free licenses / check-licenses (pull_request) Successful in 1m14s
Add copyright notice / copyright_notice (pull_request) Successful in 2m5s
Run unit tests / unit_tests (pull_request) Successful in 3m46s
Add copyright notice
2024-12-08 13:02:08 +00:00

62 lines
1.7 KiB
Ruby

# Copyright (C) 2024 Manuel Bustillo
require 'swagger_helper'
RSpec.describe 'tables_arrangements', type: :request do
path '/{slug}/tables_arrangements' do
get('list tables arrangements') do
tags 'Tables Arrangements'
produces 'application/json'
parameter Swagger::Schema::SLUG
response(200, 'successful') do
schema type: :array,
items: {
type: :object,
required: %i[id name discomfort],
properties: {
id: { type: :string, format: :uuid },
name: { type: :string },
discomfort: { type: :integer }
}
}
xit
end
regular_api_responses
end
end
path '/{slug}/tables_arrangements/{id}' do
get('show tables arrangement') do
tags 'Tables Arrangements'
produces 'application/json'
parameter Swagger::Schema::SLUG
parameter Swagger::Schema::ID
response(200, 'successful') do
schema type: :array,
items: {
type: :object,
required: %i[number guests],
properties: {
number: { type: :integer },
guests: {
type: :array,
items: {
type: :object,
required: %i[id name color],
properties: {
id: { type: :string, format: :uuid },
name: { type: :string },
color: { type: :string }
}
}
}
}
}
xit
end
regular_api_responses
end
end
end