#!/bin/bash test_description='basic depriority functionality ' . ./test-lib.sh test_todo_session 'depriority usage' <>> todo.sh depri B B usage: todo.sh depri ITEM#[, ITEM#, ITEM#, ...] === 1 EOF test_todo_session 'depriority nonexistant item' <>> todo.sh depri 42 TODO: No task 42. === 1 EOF cat > todo.txt <>> todo.sh -p list 2 (A) notice the sunflowers 1 (B) smell the uppercase Roses +flowers @outside 3 stop -- TODO: 3 of 3 tasks shown >>> todo.sh depri 1 1 smell the uppercase Roses +flowers @outside TODO: 1 deprioritized. >>> todo.sh -p list 2 (A) notice the sunflowers 1 smell the uppercase Roses +flowers @outside 3 stop -- TODO: 3 of 3 tasks shown EOF cat > todo.txt <>> todo.sh -p list 2 (A) notice the sunflowers 1 (B) smell the uppercase Roses +flowers @outside 3 (C) stop -- TODO: 3 of 3 tasks shown >>> todo.sh depri 3 2 3 stop TODO: 3 deprioritized. 2 notice the sunflowers TODO: 2 deprioritized. >>> todo.sh -p list 1 (B) smell the uppercase Roses +flowers @outside 2 notice the sunflowers 3 stop -- TODO: 3 of 3 tasks shown EOF cat > todo.txt <>> todo.sh -p list 2 (A) notice the sunflowers 1 (B) smell the uppercase Roses +flowers @outside 3 stop -- TODO: 3 of 3 tasks shown >>> todo.sh depri 3 2 === 1 TODO: 3 is not prioritized. 2 notice the sunflowers TODO: 2 deprioritized. >>> todo.sh -p list 1 (B) smell the uppercase Roses +flowers @outside 2 notice the sunflowers 3 stop -- TODO: 3 of 3 tasks shown EOF test_done