2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/tests/test_naming.js
2018-07-18 00:59:18 +05:30

24 lines
959 B
JavaScript

const assert = require('assert');
const frappe = require('frappejs');
const helpers = require('./helpers');
const naming = require('frappejs/model/naming')
describe('Naming', () => {
before(async function() {
await helpers.initSqlite();
});
it('should start a series and get next value', async () => {
frappe.db.delete('NumberSeries', 'test-series-')
assert.equal(await naming.getSeriesNext('test-series-'), 'test-series-1001');
assert.equal(await naming.getSeriesNext('test-series-'), 'test-series-1002');
assert.equal(await naming.getSeriesNext('test-series-'), 'test-series-1003');
});
it('should set name by autoincrement', async () => {
const todo1 = await frappe.insert({doctype: 'ToDo', subject: 'naming test'});
const todo2 = await frappe.insert({doctype: 'ToDo', subject: 'naming test'});
assert.equal(parseInt(todo1.name) + 1, parseInt(todo2.name));
});
});