@@ -153,20 +153,19 @@ def test_help_returns_list_of_commands(spawnbdb):
153153 c = spawnbdb
154154 c .sendexpectcmd ('.help' )
155155 c .expect_lines ([
156- ' .codebook load codebook for table' ,
157- ' .csv create table from CSV file' ,
158- ' .describe describe BayesDB entities' ,
159- ' .guess guess data generator' ,
160- ' .help show help for commands' ,
161- ' .hook add custom commands from a python source file' ,
162- ' .legacymodels load legacy models' ,
163- ' .open close existing database and open new one' ,
164- ' .pythexec execute a Python statement' ,
165- ' .python evaluate a Python expression' ,
166- ' .read read a file of shell commands' ,
167- ' .sql execute a SQL query' ,
168- ' .trace trace queries' ,
169- ' .untrace untrace queries' ,
156+ ' .codebook load codebook for table' ,
157+ ' .csv create table from CSV file' ,
158+ ' .describe describe BayesDB entities' ,
159+ ' .guess guess population schema' ,
160+ ' .help show help for commands' ,
161+ ' .hook add custom commands from a python source file' ,
162+ ' .open close existing database and open new one' ,
163+ ' .pythexec execute a Python statement' ,
164+ ' .python evaluate a Python expression' ,
165+ ' .read read a file of shell commands' ,
166+ ' .sql execute a SQL query' ,
167+ ' .trace trace queries' ,
168+ ' .untrace untrace queries' ,
170169 "Type `.help <cmd>' for help on the command <cmd>." ,
171170 ])
172171 c .expect_prompt ()
@@ -378,21 +377,20 @@ def test_hook(spawnbdb):
378377 c .expect_prompt ()
379378 c .sendexpectcmd ('.help' )
380379 c .expect_lines ([
381- ' .codebook load codebook for table' ,
382- ' .csv create table from CSV file' ,
383- ' .describe describe BayesDB entities' ,
384- ' .guess guess data generator' ,
385- ' .help show help for commands' ,
386- ' .hook add custom commands from a python source file' ,
387- ' .legacymodels load legacy models' ,
388- ' .myhook myhook help string' ,
389- ' .open close existing database and open new one' ,
390- ' .pythexec execute a Python statement' ,
391- ' .python evaluate a Python expression' ,
392- ' .read read a file of shell commands' ,
393- ' .sql execute a SQL query' ,
394- ' .trace trace queries' ,
395- ' .untrace untrace queries' ,
380+ ' .codebook load codebook for table' ,
381+ ' .csv create table from CSV file' ,
382+ ' .describe describe BayesDB entities' ,
383+ ' .guess guess population schema' ,
384+ ' .help show help for commands' ,
385+ ' .hook add custom commands from a python source file' ,
386+ ' .myhook myhook help string' ,
387+ ' .open close existing database and open new one' ,
388+ ' .pythexec execute a Python statement' ,
389+ ' .python evaluate a Python expression' ,
390+ ' .read read a file of shell commands' ,
391+ ' .sql execute a SQL query' ,
392+ ' .trace trace queries' ,
393+ ' .untrace untrace queries' ,
396394 "Type `.help <cmd>' for help on the command <cmd>."
397395 ])
398396 c .expect_prompt ()
0 commit comments