Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Ormandi committed Apr 30, 2023
1 parent 004b0e5 commit f7784fb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions spec/app_store_connect_api/client/beta_testers_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,24 +50,24 @@
subject { client.remove_beta_tester_apps 'beta-tester-id', ['app-id1', 'app-id2'] }

it_behaves_like 'a DELETE endpoint', url: 'https://api.appstoreconnect.apple.com/v1/betaTesters/beta-tester-id/relationships/apps',
body: {
data: [{ id: 'app-id1', type: 'apps' },
{ id: 'app-id2', type: 'apps' }]
}
body: {
data: [{ id: 'app-id1', type: 'apps' },
{ id: 'app-id2', type: 'apps' }]
}
end

describe '#beta_tester_beta_groups' do
subject { client.beta_tester_beta_groups 'beta-tester-id', limit: 10 }

it_behaves_like 'a GET endpoint', url: 'https://api.appstoreconnect.apple.com/v1/betaTesters/beta-tester-id/betaGroups',
query_params: { limit: 10 }
query_params: { limit: 10 }
end

describe '#beta_tester_beta_group_ids' do
subject { client.beta_tester_beta_group_ids 'beta-tester-id', limit: 10 }

it_behaves_like 'a GET endpoint', url: 'https://api.appstoreconnect.apple.com/v1/betaTesters/beta-tester-id/relationships/betaGroups',
query_params: { limit: 10 }
query_params: { limit: 10 }
end

describe '#add_beta_tester_beta_groups' do
Expand Down

0 comments on commit f7784fb

Please sign in to comment.