Sha256: 2e3319eed0403e490052b5deee83d5fbbf7c3e6da0527a49a624b29161201235
Contents?: true
Size: 585 Bytes
Versions: 11
Compression:
Stored size: 585 Bytes
Contents
require 'test/unit' require 'whitelabelmachinename-ruby-sdk' class TestConditionTypeAll < Test::Unit::TestCase def test_condition_type_all app_user_id = 512 app_user_key = "FKrO76r5VwJtBrqZawBspljbBNOxp5veKQQkOnZxucQ=" WhiteLabelMachineName.configure do |config| config.user_id = app_user_id config.authentication_key = app_user_key end condition_type_service = WhiteLabelMachineName::ConditionTypeService.new condition_types, status_code = condition_type_service.all_with_http_info() assert_equal(200, status_code) end end
Version data entries
11 entries across 11 versions & 1 rubygems