Sha256: 666c72e81bcd9f4c0f95bbbf6626f8f2f5b67730da2ff0feba540acccc6d1769

Contents?: true

Size: 612 Bytes

Versions: 3

Compression:

Stored size: 612 Bytes

Contents

Feature: deprecation warnings

Background:
  Given a repository with following Vendorfile:
    """ruby
    vendor 'generated', :version => '0.23' do |v|
      File.open('README', 'w') { |f| f.puts "Hello, World!" }
    end
    """

Scenario: `vendorify` command prints a deprecation warning
  When I run "vendorify"
  Then command output includes "DEPRECATED: `vendorify` command is deprecated, run `vendor` instead"

Scenario: `vendor` command doesn't print a deprecation warning
  When I run "vendor"
  Then command output does not include "DEPRECATED: `vendorify` command is deprecated, run `vendor` instead"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vendorificator-0.1.1 features/deprecated.feature
vendorificator-0.1.0 features/deprecated.feature
vendorificator-0.0.1 features/deprecated.feature