Sha256: 8d3842541c6f72c466ab1990b5519814ab5fa5e8004e75d038c40c5a5732d549
Contents?: true
Size: 468 Bytes
Versions: 2
Compression:
Stored size: 468 Bytes
Contents
$:.push File.expand_path('../../lib', __FILE__) require "supersaas-api-client" require "minitest/autorun" class SupersaasTest < Minitest::Test def assert_last_request_path(path) assert_equal path, @client.last_request.path end protected def client_instance if !defined? @client @client = Supersaas::Client.instance @client.account_name = 'accnt' @client.password = 'pwd' @client.dry_run = true end @client end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
supersaas-api-client-0.10.0 | test/test_helper.rb |
supersaas-api-client-0.9.0 | test/test_helper.rb |