Closed shanear closed 6 years ago
Added ListContentions and CreateContentions as new requests.
ListContentions
CreateContentions
Tested locally connected to VBMS.
To test:
> irb -Ilib require "vbms" c = VBMS::Client.from_env_vars(env_name: ENV["CONNECT_VBMS_ENV"]) r = VBMS::Requests::CreateContentions.new( veteran_file_number: "241573462", claim_id: "600118427", contentions: ["Billy One", "Billy Two", "Billy Three"] ) c.send_request(r) r = VBMS::Requests::ListContentions.new( claim_id: "600118427" ) c.send_request(r)
Hey @shanear, do you think you could add some unit tests?
Added
ListContentions
andCreateContentions
as new requests.Tested locally connected to VBMS.
To test: