Sha256: 0ecc3059eafd94f9045203f01e5e7b2f3390a0b1a785912c64bdbe186218559d

Contents?: true

Size: 1.1 KB

Versions: 17

Compression:

Stored size: 1.1 KB

Contents

# Repeated Conditional

## Introduction

`Repeated Conditional` is a special case of [Simulated Polymorphism](Simulated-Polymorphism.md). Basically it means you are checking the same value throughout a single class and take decisions based on this.

## Example

Given

```Ruby
class RepeatedConditionals
  attr_accessor :switch

  def repeat_1
    puts "Repeat 1!" if switch
  end

  def repeat_2
    puts "Repeat 2!" if switch
  end

  def repeat_3
    puts "Repeat 3!" if switch
  end
end
```

Reek would emit the following warning:

```
test.rb -- 4 warnings:
  [5, 9, 13]:RepeatedConditionals tests switch at least 3 times (RepeatedConditional)
```

If you get this warning then you are probably not using the right abstraction or even more probable, missing an additional abstraction.

## Configuration

Reek's `Repeated Conditional` detector offers the [Basic Smell Options](Basic-Smell-Options.md), plus:

| Option         | Value       | Effect  |
| ---------------|-------------|---------|
| `max_ifs` |  integer | The maximum number of identical conditional tests permitted before Reek raises a warning. Defaults to 2. |

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
reek-4.0.1 docs/Repeated-Conditional.md
reek-4.0.0 docs/Repeated-Conditional.md
reek-4.0.0.pre1 docs/Repeated-Conditional.md
reek-3.11 docs/Repeated-Conditional.md
reek-3.10.2 docs/Repeated-Conditional.md
reek-3.10.1 docs/Repeated-Conditional.md
reek-3.10.0 docs/Repeated-Conditional.md
reek-3.9.1 docs/Repeated-Conditional.md
reek-3.9.0 docs/Repeated-Conditional.md
reek-3.8.3 docs/Repeated-Conditional.md
reek-3.8.2 docs/Repeated-Conditional.md
reek-3.8.1 docs/Repeated-Conditional.md
reek-3.8.0 docs/Repeated-Conditional.md
reek-3.7.1 docs/Repeated-Conditional.md
reek-3.7.0 docs/Repeated-Conditional.md
reek-3.6.1 docs/Repeated-Conditional.md
reek-3.6.0 docs/Repeated-Conditional.md