rename controllers and views

This commit is contained in:
Matias Alejo Garcia 2014-10-30 14:13:40 -03:00
commit 505ac5b5c6
6 changed files with 13 additions and 16 deletions

View file

@ -132,25 +132,25 @@ describe("Unit: Controllers", function() {
});
describe('Address Controller', function() {
var addressCtrl;
describe('Receive Controller', function() {
var c;
beforeEach(inject(function($controller, $rootScope) {
scope = $rootScope.$new();
addressCtrl = $controller('AddressesController', {
c = $controller('ReceiveController', {
$scope: scope,
});
}));
it('should have a AddressesController controller', function() {
it('should have a ReceiveController controller', function() {
expect(scope.loading).equal(false);
});
});
describe('Transactions Controller', function() {
describe('History Controller', function() {
var transactionsCtrl;
beforeEach(inject(function($controller, $rootScope) {
scope = $rootScope.$new();
transactionsCtrl = $controller('TransactionsController', {
transactionsCtrl = $controller('HistoryController', {
$scope: scope,
});
}));