class RuboCop::Cop::RSpec::ItBehavesLike

Checks that only one ‘it_behaves_like` style is used.

@example ‘EnforcedStyle: it_behaves_like` (default)

# bad
it_should_behave_like 'a foo'

# good
it_behaves_like 'a foo'

@example ‘EnforcedStyle: it_should_behave_like`

# bad
it_behaves_like 'a foo'

# good
it_should_behave_like 'a foo'