Sha256: 4413ede00fed735c9f62d31572a51944117b6a61e3174fa23d2ababdeb052297

Contents?: true

Size: 1.3 KB

Versions: 13

Compression:

Stored size: 1.3 KB

Contents

Feature: The dump command

  Scenario: Creating a dump of the development database
    When I run `geordi dump`
    Then the output should contain "Util.system! dumple development"
      And the output should contain "Successfully dumped the development database"


  Scenario: Creating a dump of a remote database
    Given a file named "Capfile" with "Capfile exists"
    And a file named "config/deploy.rb" with:
    """
    """
    And a file named "config/deploy/staging.rb" with:
    """
    set :rails_env, 'staging'
    set :deploy_to, '/var/www/example.com'
    set :user, 'user'

    server 'www.example.com'
    """

    When I run `geordi dump staging`
    Then the output should contain "# Dumping the database of staging"
      And the output should contain "> Connecting to www.example.com"
      And the output should contain "Util.system! ssh, user@www.example.com, -t, cd /var/www/example.com/current && bash --login -c 'dumple staging --for_download'"
      And the output should contain "> Downloading remote dump to tmp/staging.dump"
      # Omitting the absolute path in this regex (.*)
      And the output should match %r<Util.system! scp user@www.example.com:~/dumps/dump_for_download.dump .*/tmp/aruba/tmp/staging.dump>
      And the output should contain "> Dumped the staging database to tmp/staging.dump"

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
geordi-1.10.0 features/dump.feature
geordi-1.9.1 features/dump.feature
geordi-1.9.0 features/dump.feature
geordi-1.8.0 features/dump.feature
geordi-1.7.1 features/dump.feature
geordi-1.7.0 features/dump.feature
geordi-1.6.5 features/dump.feature
geordi-1.6.4 features/dump.feature
geordi-1.6.3 features/dump.feature
geordi-1.6.2 features/dump.feature
geordi-1.6.1 features/dump.feature
geordi-1.6.0 features/dump.feature
geordi-1.5.2 features/dump.feature