renovations

This commit is contained in:
Ilya Kantor 2015-04-01 19:08:41 +03:00
parent 0e9ceb2b3a
commit 150d92f10f
47 changed files with 290 additions and 110 deletions

View file

@ -0,0 +1,8 @@
describe("extractCurrencyValue", function() {
it("выделяет из строки $120 число 120", function() {
assert.strictEqual(extractCurrencyValue('$120'), 120);
});
});