Sha256: 032501cc2619bdf434408b581d1c1b08eab99cb1fae625c7c88724abd87593d0
Contents?: true
Size: 1.21 KB
Versions: 2
Compression:
Stored size: 1.21 KB
Contents
@reports Feature: Correclty formatted reports In order to get the most out of reek As a developer I want to be able to parse reek's output simply and consistently Scenario: two reports run together with indented smells When I run reek spec/samples/two_smelly_files/*.rb Then it fails with exit status 2 And it reports: """ spec/samples/two_smelly_files/dirty_one.rb -- 6 warnings: Dirty has the variable name '@s' (Uncommunicative Name) Dirty#a calls @s.title multiple times (Duplication) Dirty#a calls puts(@s.title) multiple times (Duplication) Dirty#a has the name 'a' (Uncommunicative Name) Dirty#a/block has the variable name 'x' (Uncommunicative Name) Dirty#a/block/block is nested (Nested Iterators) spec/samples/two_smelly_files/dirty_two.rb -- 6 warnings: Dirty has the variable name '@s' (Uncommunicative Name) Dirty#a calls @s.title multiple times (Duplication) Dirty#a calls puts(@s.title) multiple times (Duplication) Dirty#a has the name 'a' (Uncommunicative Name) Dirty#a/block has the variable name 'x' (Uncommunicative Name) Dirty#a/block/block is nested (Nested Iterators) """
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kevinrutherford-reek-1.1.3.5 | features/reports.feature |
kevinrutherford-reek-1.1.3.6 | features/reports.feature |