Sha256: 8bdcf9020968aaee6c6c316fc5bd861f113fa59ebc172cef112936e34a52d575
Contents?: true
Size: 945 Bytes
Versions: 2
Compression:
Stored size: 945 Bytes
Contents
require 'test_helper' module Regaliator module V15 class BillerTest < Minitest::Test def setup @config = Configuration.new.tap do |config| config.version = API_VERSION config.api_key = 'testing' config.secret_key = 'testing' config.host = 'api.regalii.dev' config.use_ssl = false end end def test_list_topups VCR.use_cassette('v15/biller/topups') do |cassette| response = Regaliator.new(@config).biller.topups assert response.success? assert_equal extract_hsh(cassette), response.data end end def test_list_utilities VCR.use_cassette('v15/biller/utilities') do |cassette| response = Regaliator.new(@config).biller.utilities assert response.success? assert_equal extract_hsh(cassette), response.data end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
regaliator-4.0.1 | test/regaliator/v15/biller_test.rb |
regaliator-4.0.0 | test/regaliator/v15/biller_test.rb |