mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
24 lines
950 B
JavaScript
24 lines
950 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-1');
|
|
assert.equal(await naming.getSeriesNext('test-series-'), 'test-series-2');
|
|
assert.equal(await naming.getSeriesNext('test-series-'), 'test-series-3');
|
|
});
|
|
|
|
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));
|
|
});
|
|
|
|
}); |