From be9d89c2c72b77162a74cf017b533a8dd0c36a52 Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Sun, 14 Dec 2014 11:40:38 -0800 Subject: Add some docs for release procedures and manual tests. --- sanity_checks.txt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 sanity_checks.txt (limited to 'sanity_checks.txt') diff --git a/sanity_checks.txt b/sanity_checks.txt new file mode 100644 index 00000000..899c4c9d --- /dev/null +++ b/sanity_checks.txt @@ -0,0 +1,31 @@ +# vi: ft=vimwiki + +* Launch pgcli with different inputs. + * pgcli test_db + * pgcli postgres://localhost/test_db + * pgcli postgres://localhost:5432/test_db + * pgcli postgres://amjith@localhost:5432/test_db + * pgcli postgres://amjith:password@localhost:5432/test_db + * pgcli non-existent-db + +* Test special command + * \d + * \d table_name + * \dt + * \l + * \c amjith + * \q + +* Test smart-completion + * Sele - Must auto-complete to SELECT + * SELECT * FROM - Must list the table names. + * INSERT INTO - Must list table names. + * \d - Must list table names. + * \c - Database names. + * SELECT * FROM table_name WHERE - column names (all of it). + +* Test naive-completion - turn off smart completion (using F2 key after launch) + * Sele - autocomplete to select. + * SELECT * FROM - autocomplete list should have everything. + + -- cgit v1.2.3