Sha256: 536675377623f6f814a85c39fa1ead3db4507ac2deeabcee063c59b19742a66e

Contents?: true

Size: 680 Bytes

Versions: 6

Compression:

Stored size: 680 Bytes

Contents

Feature: Version lock
  In order to use the same configuration on every machine,
  as a lazy Vim user,
  I want to keep versions of Vim plugins which I installed before.

  Scenario: Install with a lockfile
    Given a repository "foo" with versions "1.0.0 1.0.1 1.0.2"
    And a flavorfile with:
      """ruby
      flavor '$foo_uri'
      """
    And a lockfile with:
      """
      $foo_uri (1.0.0)
      """
    When I run `vim-flavor install`
    Then it should pass
    And the lockfile is updated with:
      """
      $foo_uri (1.0.0)
      """
    And a bootstrap script is created in "$home/.vim"
    And a flavor "$foo_uri" version "1.0.0" is deployed to "$home/.vim"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vim-flavor-2.2.2 features/version_lock.feature
vim-flavor-2.2.1 features/version_lock.feature
vim-flavor-2.2.0 features/version_lock.feature
vim-flavor-2.1.1 features/version_lock.feature
vim-flavor-2.1.0 features/version_lock.feature
vim-flavor-2.0.0 features/version_lock.feature