Sha256: 5d57f0962eebbb4bcf5f6abed3a084602b301c5c941fe1f9c4768ec6ef088187

Contents?: true

Size: 1.38 KB

Versions: 2

Compression:

Stored size: 1.38 KB

Contents

Feature: Upload
  Background:
    * I have a cookbook named "bacon"
    * the CLI options are all off

  Scenario: --no-upload
    * I successfully run `bake 1.0.0 --no-upload`
    * the Community Site will not have the cookbook:
      | bacon | 1.0.0 |

  Scenario: --upload (no category, no existing)
    * I run `bake 1.0.0 --upload`
    * the Community Site will not have the cookbook:
      | bacon | 1.0.0 |
    * the exit status will be "CookbookCategoryNotFound"

  Scenario: --upload (no category, existing)
    * the Community Site has the cookbook:
      | bacon | 0.0.0 | Application |
    * I successfully run `bake 1.0.0 --upload`
    * the Community Site will have the cookbook:
      | bacon | 1.0.0 | Application |

  Scenario: --upload (category, no existing)
    * I successfully run `bake 1.0.0 --upload --category Application`
    * the Community Site will have the cookbook:
      | bacon | 1.0.0 | Application |

  Scenario: --upload (category, existing)
    * the Community Site has the cookbook:
      | bacon | 0.0.0 | Application |
    * I successfully run `bake 1.0.0 --upload --category Application`
    * the Community Site will have the cookbook:
      | bacon | 1.0.0 | Application |

  Scenario: --upload (existing version)
    * the Community Site has the cookbook:
      | bacon | 1.0.0 | Application |
    * I run `bake 1.0.0 --upload`
    * the exit status will be "UploadError"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
stove-1.1.2 features/upload.feature
stove-1.1.0 features/upload.feature