add test for setObj

This commit is contained in:
Ryan X. Charles 2014-07-02 17:54:27 -07:00
parent 71e226b782
commit e69d71924d
1 changed files with 15 additions and 0 deletions

View File

@ -177,6 +177,21 @@ describe('PayPro', function() {
});
describe('#setObj', function() {
it('should set properties of paymentdetails', function() {
var pd = new PayPro.PaymentDetails();
var paypro = new PayPro();
paypro.messageType = "PaymentDetails";
paypro.message = pd;
paypro.setObj({
time: 0
});
paypro.get('time').should.equal(0);
});
});
describe('#serializeForSig', function() {
it('should serialize a PaymentRequest and not fail', function() {