Sha256: 3142c467406020f2284550fd5945e8dffdadced823e88f52cbc353f04a5452d8

Contents?: true

Size: 1.12 KB

Versions: 19

Compression:

Stored size: 1.12 KB

Contents

Feature: Progress messages
  In order to know what is going on,
  as a lazy Vim user,
  I want to see messages about the current progress.

  Scenario: Install Vim plugins successfully
    Given a repository "foo" with versions "1.0.0 1.0.1 1.0.2"
    And a repository "bar" with versions "2.0.0 2.0.1 2.0.2"
    And a flavorfile with:
      """ruby
      flavor '$foo_uri', '~> 1.0'
      flavor '$bar_uri'
      """
    When I run `vim-flavor install`
    Then it should pass with template:
      """
      Checking versions...
        Use $bar_uri ... 2.0.2
        Use $foo_uri ... 1.0.2
      Deploying plugins...
        $bar_uri 2.0.2 ... done
        $foo_uri 1.0.2 ... done
      Completed.
      """

  Scenario: Install Vim plugins which are not existing
    Given a flavorfile with:
      """ruby
      flavor 'file://$tmp/no-such-plugin'
      """
    When I run `vim-flavor install`
    Then it should fail with template:
      """
      Checking versions...
        Use file://$tmp/no-such-plugin ... failed
      """
    And it should fail with regexp:
      """
      fatal: '\S+' does not appear to be a git repository
      """

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
vim-flavor-4.0.3 features/command_line/progress_messages.feature
vim-flavor-4.0.2 features/command_line/progress_messages.feature
vim-flavor-4.0.1 features/command_line/progress_messages.feature
vim-flavor-4.0.0 features/command_line/progress_messages.feature
vim-flavor-3.0.0 features/command_line/progress_messages.feature
vim-flavor-2.2.2 features/command_line/progress_messages.feature
vim-flavor-2.2.1 features/command_line/progress_messages.feature
vim-flavor-2.2.0 features/command_line/progress_messages.feature
vim-flavor-2.1.1 features/command_line/progress_messages.feature
vim-flavor-2.1.0 features/command_line/progress_messages.feature
vim-flavor-2.0.0 features/command_line/progress_messages.feature
vim-flavor-1.1.5 features/command_line/progress_messages.feature
vim-flavor-1.1.4 features/command_line/progress_messages.feature
vim-flavor-1.1.3 features/command_line/progress_messages.feature
vim-flavor-1.1.2 features/command_line/progress_messages.feature
vim-flavor-1.1.1 features/command_line/progress_messages.feature
vim-flavor-1.1.0 features/command_line/progress_messages.feature
vim-flavor-1.0.3 features/command_line/progress_messages.feature
vim-flavor-1.0.2 features/command_line/progress_messages.feature