=begin #DevCycle Bucketing API #Documents the DevCycle Bucketing API which provides and API interface to User Bucketing and for generated SDKs. The version of the OpenAPI document: 1.0.0 Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.3.0 =end require 'spec_helper' require 'json' # Unit tests for DevCycle::DevcycleApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'DevcycleApi' do before do # run before each test @api_instance = DevCycle::DevcycleApi.new end after do # run after each test end describe 'test an instance of DevcycleApi' do it 'should create an instance of DevcycleApi' do expect(@api_instance).to be_instance_of(DevCycle::DevcycleApi) end end # unit tests for get_features # Get all features by key for user data # @param user_data # @param [Hash] opts the optional parameters # @return [Hash] describe 'get_features test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for get_variable_by_key # Get variable by key for user data # @param key Variable key # @param user_data # @param [Hash] opts the optional parameters # @return [Variable] describe 'get_variable_by_key test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for get_variables # Get all variables by key for user data # @param user_data # @param [Hash] opts the optional parameters # @return [Hash] describe 'get_variables test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for post_events # Post events to DevCycle for user # @param user_data_and_events_body # @param [Hash] opts the optional parameters # @return [InlineResponse201] describe 'post_events test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end