File: basic_commands.feature

package info (click to toggle)
mycli 1.42.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,036 kB
  • sloc: python: 8,587; makefile: 10
file content (25 lines) | stat: -rw-r--r-- 591 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Feature: run the cli,
  call the help command,
  check our application name,
  insert the date,
  exit the cli

  Scenario: run "\?" command
     When we send "\?" command
      then we see help output

  Scenario: run source command
     When we send source command
      then we see help output

  Scenario: check our application_name
     When we run query to check application_name
      then we see found

  Scenario: insert the date
     When we send "ctrl + o, ctrl + d"
      then we see the date

  Scenario: run the cli and exit
     When we send "ctrl + d"
      then dbcli exits