Sha256: 7172e57ec646112f495a952bbd179faa0c9d3013a1f31a15784102ac936abf31

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 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 it reports:
      """


      """

  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 -- 2 warnings:
        Turn has the variable name '@x' (Uncommunicative Name)
        Turn#y has the name 'y' (Uncommunicative Name)

      """

  @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 stderr reports:
      """
      $stdin: Racc::ParseError: 
      parse error on value "$end" ($end)

      """

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reek-1.2.6 features/stdin.feature