Sha256: 28cc7dca01e341d24edbd9ee8ba17311cc6d991bbcc75b87ae8a2ae1f48fbd99

Contents?: true

Size: 700 Bytes

Versions: 5

Compression:

Stored size: 700 Bytes

Contents

@typical_usage
Feature: Deploy Vim plugins to a non-standard directory
  In order to provide flexibility,
  as a lazy Vim user,
  I want to deploy Vim plugins to arbitrary place.

  Background:
    Given a repository "foo" with versions "1.0.0 1.0.1 1.0.2"

  Scenario: Install to specified vimfiles path which does not exist
    Given a flavorfile with:
      """ruby
      flavor '$foo_uri'
      """
    And a directory named "my-vimfiles" should not exist
    When I run `vim-flavor install --vimfiles-path=my-vimfiles`
    Then it should pass
    And a lockfile is created with:
      """
      $foo_uri (1.0.2)
      """
    And a flavor "$foo_uri" version "1.0.2" is deployed to "my-vimfiles"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
vim-flavor-4.0.3 features/typical_usage/deploy_to_arbitrary_place.feature
vim-flavor-4.0.2 features/typical_usage/deploy_to_arbitrary_place.feature
vim-flavor-4.0.1 features/typical_usage/deploy_to_arbitrary_place.feature
vim-flavor-4.0.0 features/typical_usage/deploy_to_arbitrary_place.feature
vim-flavor-3.0.0 features/typical_usage/deploy_to_arbitrary_place.feature