File: crud_database.feature

package info (click to toggle)
pgcli 4.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,476 kB
  • sloc: python: 10,390; sh: 67; makefile: 8
file content (17 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Feature: manipulate databases:
  create, drop, connect, disconnect

  Scenario: create and drop temporary database
     When we create database
      then we see database created
      when we drop database
      then we respond to the destructive warning: y
      then we see database dropped
      when we connect to dbserver
      then we see database connected

  Scenario: connect and disconnect from test database
     When we connect to test database
      then we see database connected
      when we connect to dbserver
      then we see database connected