Skip to content

Files

Latest commit

 

History

History
33 lines (21 loc) · 503 Bytes

RSpec-MetadataStyle.md

File metadata and controls

33 lines (21 loc) · 503 Bytes

Pattern: Inconsistent metadata style

Issue: -

Description

Checks for consistent metadata style.

Examples

EnforcedStyle: symbol (default)

# bad
describe 'Something', a: true

# good
describe 'Something', :a

EnforcedStyle: hash

# bad
describe 'Something', :a

# good
describe 'Something', a: true

Further Reading