Update karma tests

This commit is contained in:
Yemel Jardi 2014-08-13 15:15:53 -03:00
parent b19a0daa64
commit bb744ef271
1 changed files with 5 additions and 5 deletions

View File

@ -422,7 +422,7 @@ describe("Unit: Controllers", function() {
beforeEach(inject(function($controller, $rootScope) { beforeEach(inject(function($controller, $rootScope) {
scope = $rootScope.$new(); scope = $rootScope.$new();
var routeParams = { var routeParams = {
data: 'bitcoin:19mP9FKrXqL46Si58pHdhGKow88SUPy1V8%3Famount=0.1&message=a%20bitcoin%20donation' data: 'bitcoin:19mP9FKrXqL46Si58pHdhGKow88SUPy1V8?amount=0.1&message=a%20bitcoin%20donation'
}; };
what = $controller('UriPaymentController', { what = $controller('UriPaymentController', {
$scope: scope, $scope: scope,
@ -436,10 +436,10 @@ describe("Unit: Controllers", function() {
it('should parse url correctly', function() { it('should parse url correctly', function() {
should.exist(what); should.exist(what);
scope.protocol.should.equal('bitcoin'); should.exist(scope.pendingPayment);
scope.address.should.equal('19mP9FKrXqL46Si58pHdhGKow88SUPy1V8'); scope.pendingPayment.address.data.should.equal('19mP9FKrXqL46Si58pHdhGKow88SUPy1V8');
scope.amount.should.equal(0.1); scope.pendingPayment.data.amount.should.equal(0.1);
scope.message.should.equal('a bitcoin donation'); scope.pendingPayment.data.message.should.equal('a bitcoin donation');
}); });
}); });