Pattern: Inconsistent use of it_behaves_like
/it_should_behave_like
Issue: -
Checks that only one it_behaves_like
style is used.
# bad
it_should_behave_like 'a foo'
# good
it_behaves_like 'a foo'
# bad
it_behaves_like 'a foo'
# good
it_should_behave_like 'a foo'
Name | Default value | Configurable values |
---|---|---|
EnforcedStyle | it_behaves_like |
it_behaves_like , it_should_behave_like |