Sha256: e021bdfcceb68f12e0576db81563ea64a408c5032d114e84508c2ec69b181166

Contents?: true

Size: 815 Bytes

Versions: 2

Compression:

Stored size: 815 Bytes

Contents

Feature: check style guide
  In order to check style guide
  As a ruby developer
  I want to run warder with --style-guide option

  Scenario: run warder with enabled style guide option
    Given I have valid file in directory
    When I run `warder --style-guide`
    Then warder validates style guide
    Then the exit status should be 0

  Scenario: run warder with enabled style guide option on invalid file
    Given I have invalid_style_guide file in directory
    When I run `warder --style-guide`
    Then warder validates style guide
    Then the exit status should be 1

  Scenario: run warder with disabled style guide option on invalid file
    Given I have invalid_style_guide file in directory
    When I run `warder --no-style-guide`
    Then warder does nothing
    Then the exit status should be 0

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
warder-0.0.5 features/validates_style_guide.feature
warder-0.0.4 features/validates_style_guide.feature