Skip to content

Commit

Permalink
feat: убираются единицы изменения, типа "2 пакета", "1 килограмм"
Browse files Browse the repository at this point in the history
  • Loading branch information
popstas committed Feb 16, 2019
1 parent cd522b1 commit 5a11f00
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 9 additions & 1 deletion src/entities/shop.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,15 @@ module.exports = () => (ctx, next) => {
'вычеркнуть',
'показаться',

'какие' // какие покупки
'какие', // какие покупки

'пакет',
'мешок',
'пачка',
'штука',
'упаковка',
'килограмм',
'грамм',
];
if (shopWords.filter(word => infs.indexOf(word) != -1).length > 0 || knownMatcher(ctx)) {
ctx.entities.shop.action = 'list';
Expand Down
4 changes: 3 additions & 1 deletion static/scenarios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@
"добавь":
- удали список
- Список покупок очищен
- добавь 2 пакета молока
- tests: [ { contains: 'молоко' }, { not_contains: 'пакет' } ]
- на завтра надо заехать в магазин и купить растворимый кофе в пакетиках сметану белый хлеб и вкусных бананов
- tests:
- { contains: 'сметана' }
Expand All @@ -138,7 +140,7 @@
- добавь в список покупок
- tests: [ { contains: 'сметана' }, { contains: 'белый хлеб' }, { contains: 'вкусные бананы' } ]
- добавь в список покупок сыр
- tests: [ { contains: '6 продуктов' } ]
- tests: [ { contains: '7 продуктов' } ]

"добавь с прилагательными":
- добавь соевый соус и барбарисовый чай
Expand Down

0 comments on commit 5a11f00

Please sign in to comment.