Sha256: 88ec001948d84bee848dd84b81a448d26136f28204e53942199121076e3470ea

Contents?: true

Size: 950 Bytes

Versions: 1

Compression:

Stored size: 950 Bytes

Contents

@announce
Feature: Create default package
  In order start the TDD cycle immediately
  As a clean coder
  I want to quickly create a package to support good development practices

  Scenario: Create package
    Given I run `bundle exec begin mypackage`
    Then a directory named "mypackage" should exist
    And "mypackage" should contain the correct files
    And the file "mypackage/.ruby-gemset" should contain "mypackage"
    And the file "mypackage/.ruby-version" should contain "2.0.0"
    And the file "mypackage/.travis.yml" should contain "2.0.0"
    And the file "mypackage/Gemfile" should contain "2.0.0"
    And the file "mypackage/README.md" should contain "Mypackage Documentation"
    And the file "mypackage/README.md" should not contain "Build Status"

Scenario: Create package with readme icons
    Given I run `bundle exec begin mypackage --github_user=myuser`
    And the file "mypackage/README.md" should contain "Build Status"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
begin-1.0.1 features/begin.feature