UNPKG

upstox-js-sdk

Version:

The official Node Js client for communicating with the Upstox API

64 lines (55 loc) 2.22 kB
/* * OpenAPI definition * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: v0 * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * * Swagger Codegen version: 3.0.54 * * Do not edit the class manually. * */ (function(root, factory) { if (typeof define === 'function' && define.amd) { // AMD. define(['expect.js', '../../src/index'], factory); } else if (typeof module === 'object' && module.exports) { // CommonJS-like environments that support module.exports, like Node. factory(require('expect.js'), require('../../src/index')); } else { // Browser globals (root is window) factory(root.expect, root.UpstoxClient); } }(this, function(expect, UpstoxClient) { 'use strict'; var instance; describe('(package)', function() { describe('PutCallOptionChainData', function() { beforeEach(function() { instance = new UpstoxClient.PutCallOptionChainData(); }); it('should create an instance of PutCallOptionChainData', function() { // TODO: update the code to test PutCallOptionChainData expect(instance).to.be.a(UpstoxClient.PutCallOptionChainData); }); it('should have the property instrumentKey (base name: "instrument_key")', function() { // TODO: update the code to test the property instrumentKey expect(instance).to.have.property('instrumentKey'); // expect(instance.instrumentKey).to.be(expectedValueLiteral); }); it('should have the property marketData (base name: "market_data")', function() { // TODO: update the code to test the property marketData expect(instance).to.have.property('marketData'); // expect(instance.marketData).to.be(expectedValueLiteral); }); it('should have the property optionGreeks (base name: "option_greeks")', function() { // TODO: update the code to test the property optionGreeks expect(instance).to.have.property('optionGreeks'); // expect(instance.optionGreeks).to.be(expectedValueLiteral); }); }); }); }));