rspec-documentation

0.0.11
Light Mode Dark Mode

Regular it blocks

Markdown

```rspec
subject(:value) { 'my other value' }

it 'contains some expected text' do
  expect(subjvalue).to eql 'other value'
end
```

Output

subject(:value) { 'my other value' }

it 'contains some expected text' do
  expect(value).to include 'other value'
end
"my other value"

Documentation generated by rspec-documentation