28_introduce_rswag #35

Merged
philipp merged 46 commits from 28_introduce_rswag into develop 2023-01-05 13:45:47 +01:00
1 changed files with 6 additions and 31 deletions
Showing only changes of commit fc9637f398 - Show all commits

View File

@ -7,16 +7,15 @@ describe 'Financial Transaction Classes', type: :request do
get 'financial transaction classes' do
tags 'Category'
produces 'application/json'
parameter name: "per_page", in: :query, type: :integer, required: false
parameter name: "page", in: :query, type: :integer, required: false
let(:page) { 1 }
let(:per_page) { 10 }
let(:financial_transaction_class) { create(:financial_transaction_class) }
response '200', 'success' do
schema type: :object, properties: {
meta: {
'$ref' => '#/components/schemas/Meta'
},
financial_transaction_class: {
type: :array,
items: {
@ -47,36 +46,12 @@ describe 'Financial Transaction Classes', type: :request do
}
}
}
let(:id) { FinancialTransactionClass.create(name: 'TestTransaction').id }
let(:id) { create(:financial_transaction_class).id }
run_test!
end
response '401', 'not logged in' do
schema type: :object, properties: {
financial_transaction_classes: {
type: :array,
items: {
'$ref': '#/components/schemas/FinancialTransactionClass'
}
}
}
let(:Authorization) { 'abc' }
let(:id) { FinancialTransactionClass.create(name: 'TestTransaction').id }
run_test!
end
response '404', 'financial transaction class not found' do
schema type: :object, properties: {
financial_transaction_classes: {
type: :array,
items: {
'$ref': '#/components/schemas/FinancialTransactionClass'
}
}
}
let(:id) { 'invalid' }
run_test!
end
it_handles_invalid_token_with_id :financial_transaction
it_cannot_find_object 'financial transaction class not found'
end
end
end