Merge pull request #719 from yemel/anti-feature/remove-email-backup

Remove email backup feature
This commit is contained in:
Matias Alejo Garcia 2014-06-19 17:20:47 -03:00
commit a07957d4a3
4 changed files with 2 additions and 63 deletions

View file

@ -107,10 +107,4 @@ describe("Unit: Backup Service", function() {
backupService.download(new FakeWallet());
expectation.once();
}));
it('should backup by email', inject(function(backupService) {
var mock = sinon.mock(window);
var expectation = mock.expects('open');
backupService.sendEmail('fake@test.com', new FakeWallet());
expectation.once();
}));
});