Sha256: cc63621fb988425f7f1669853d1b4af9efb379756f3bdf71c45117f1359d0d6a

Contents?: true

Size: 626 Bytes

Versions: 5

Compression:

Stored size: 626 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 flavor "$foo_uri" version "1.0.0" is deployed to "$home/.vim"

Version data entries

5 entries across 5 versions & 1 rubygems

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