aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test-shell.md
AgeCommit message (Collapse)Author
2023-06-16doc: test: update TestShell instructionsismaelsadeeq
add missing parentheses `TestShell.method` should be `TestShell().method`.
2022-11-17doc: test: update/fix TestShell example instructionsSebastian Falbesoner
Tackles two issues in the TestShell documentation: - add missing instruction for creating a wallet prior to the `getnewaddress` call (needed as there is no default wallet created anymore since v0.21) - fix `generatetoaddress` call syntax (the scripted-diff in commit fa0b916971e5bc23ad6396831940a2899ca05402 only worked for tests using `BitcoinTestFramework`)
2021-09-02scripted-diff: Use generate* from TestFrameworkMarcoFalke
-BEGIN VERIFY SCRIPT- sed --regexp-extended -i \ 's/((self\.)?(nodes\[[^]]+\]|[a-z_]*(wallet|node)[0-9a-z_]*))\.(generate(|toaddress|block|todescriptor)(\(|, ))/self.\5\1, /g' \ $(git grep -l generate ./test | grep -v 'test_framework/' | grep -v 'feature_rbf') -END VERIFY SCRIPT-
2021-02-01doc: Improve setup_clean_chain documentationFabian Jahr
2019-11-05TestShell: Return self from setup()James Chiang
This allows user to chain setup() to the initializer. test-shell.md code examples have been updated to reflect this.
2019-11-05Doc: Remove backticks in test-shell.md code blockJames Chiang
2019-11-04Add documentation for test_shell submoduleJamesC