Concept Flow - RSpec describe and it blocks
Start RSpec Test File
describe block: Group tests
it block: Define example
Run example code
Check expectation
Pass?
Yes→Next it or describe
Fail test
End tests
RSpec tests start with describe blocks grouping tests, inside which it blocks define individual test examples that run code and check expectations.