Sha256: fc50bc6241d2575826aa03c153a7f32bb3d5bf0849e66fc9e74aaecd06a7e7f0

Contents?: true

Size: 938 Bytes

Versions: 1

Compression:

Stored size: 938 Bytes

Contents

Feature: Testing buildr projects

  Scenario: Defined tasks
    Given a buildr project
    When I list the available buildr tasks
    Then the task list should include life:shen:serve
      And the task list should include life:shen:generate
      And the task list should include life:shen:shell

  Scenario: Running the server
    Given a buildr project
    When I execute `buildr life:shen:serve`
    Then the server should be running

  Scenario: Running all specs
    Given a buildr project
    When I execute `buildr test`
    Then 49 specs should run

  Scenario: Running one spec
    Given a buildr project
    When I execute `buildr test:life_spec`
    Then 1 spec should run

  Scenario: Generating a spec
    Given a buildr project
    When I execute `buildr life:shen:generate[pre_view]`
    Then the file "src/spec/javascript/pre_view_spec.js" should exist
      And the file "src/spec/javascript/pre_view.html" should exist

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shenandoah-0.2.0 features/buildr.feature