| 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='Peter MacMillan' |
| 4 | |
| 5 | . ./test-lib.sh |
| 6 | |
| 7 | test_expect_success setup ' |
| 8 | echo Hello >file && |
| 9 | git add file && |
| 10 | test_tick && |
| 11 | git commit -m V1 && |
| 12 | echo Hello world >file && |
| 13 | git add file && |
| 14 | git checkout -b other |
| 15 | ' |
| 16 | |
| 17 | test_expect_success 'check all changes are staged' ' |
| 18 | git diff --exit-code |
| 19 | ' |
| 20 | |
| 21 | test_expect_success 'second commit' ' |
| 22 | git commit -m V2 |
| 23 | ' |
| 24 | |
| 25 | test_expect_success 'check' ' |
| 26 | git diff --cached --exit-code |
| 27 | ' |
| 28 | |
| 29 | test_done |