Sha256: a2ed36fa62084df75be6e8708ec79d5092ccbd51ceee54c50568b849f91fe4ef

Contents?: true

Size: 1.27 KB

Versions: 6

Compression:

Stored size: 1.27 KB

Contents

@stdin
Feature: Reek reads from $stdin when no files are given
  In order to use reek with pipelines
  As a developer
  I want to pipe source code on stdin

  Scenario: return zero status with no smells
    When I pass "def simple() @fred = 3 end" to reek
    Then it succeeds
    And it reports:
      """
      $stdin -- 0 warnings

      """

  Scenario: outputs header only on empty stdin
    When I pass "" to reek
    Then it succeeds
    And it reports:
      """
      $stdin -- 0 warnings

      """

  Scenario: outputs nothing on empty stdin in quiet mode
    When I pass "" to reek --quiet
    Then it succeeds
    And stdout equals ""

  Scenario: return non-zero status when there are smells
    When I pass "class Turn; def y() @x = 3; end end" to reek
    Then the exit status indicates smells
    And it reports:
      """
      $stdin -- 3 warnings:
        Turn has no descriptive comment (IrresponsibleModule)
        Turn has the variable name '@x' (UncommunicativeVariableName)
        Turn#y has the name 'y' (UncommunicativeMethodName)

      """

  @stderr
  Scenario: syntax error causes the source to be ignored
    When I pass "def incomplete" to reek
    Then it succeeds
    And it reports:
      """
      $stdin -- 0 warnings

      """
    And it reports a parsing error

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
reek-1.3.3 features/command_line_interface/stdin.feature
reek-1.3.2 features/command_line_interface/stdin.feature
reek-1.3.1 features/command_line_interface/stdin.feature
reek-1.3 features/command_line_interface/stdin.feature
reek-1.2.13 features/command_line_interface/stdin.feature
reek-1.2.12 features/command_line_interface/stdin.feature