Skip to content

Commit

Permalink
adding tests for OPTOINS /api/providers
Browse files Browse the repository at this point in the history
  • Loading branch information
Erez Freiberger committed Aug 8, 2017
1 parent 18248bc commit 24a210d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions spec/requests/api/providers_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1116,4 +1116,14 @@ def gen_import_request
end
end
end

context "#options" do
it "returns options for queried provider class" do
api_basic_authorize
ExtManagementSystem.descendants.select { |ems| ems.respond_to?(:provider_settings) }.each do |ems_type|
run_options("#{providers_url}?ems_type=#{ems_type.ems_type}")
expect(response.parsed_body.to_json).to eq(ems_type.provider_settings.to_json)
end
end
end
end

0 comments on commit 24a210d

Please sign in to comment.