UNPKG

@gitchrisqueen/tdameritrade-api-js-client

Version:
65 lines (55 loc) 2.06 kB
/* * TD Ameritrade API - OAuth2 * This is replication of the TD Ameritrade API. * * OpenAPI spec version: 0.1.4 * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * * Swagger Codegen version: 2.4.14 * * 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.GitChrisQueen_TDA_JS); } }(this, function(expect, GitChrisQueen_TDA_JS) { 'use strict'; var instance; describe('(package)', function() { describe('CandleList', function() { beforeEach(function() { instance = new GitChrisQueen_TDA_JS.CandleList(); }); it('should create an instance of CandleList', function() { // TODO: update the code to test CandleList expect(instance).to.be.a(GitChrisQueen_TDA_JS.CandleList); }); it('should have the property candles (base name: "candles")', function() { // TODO: update the code to test the property candles expect(instance).to.have.property('candles'); // expect(instance.candles).to.be(expectedValueLiteral); }); it('should have the property empty (base name: "empty")', function() { // TODO: update the code to test the property empty expect(instance).to.have.property('empty'); // expect(instance.empty).to.be(expectedValueLiteral); }); it('should have the property symbol (base name: "symbol")', function() { // TODO: update the code to test the property symbol expect(instance).to.have.property('symbol'); // expect(instance.symbol).to.be(expectedValueLiteral); }); }); }); }));