rspec_describe_blocks
👥 Using Describe Blocks​
The describe
block groups related examples together and documents what you're testing. Use it to wrap tests for a class or method so your test suite remains organized and readable.
RSpec.describe User, type: :model do
# your examples go here
end