Documentation
1
2
3
4
5
6
7
8
9
describe 'plop' do
  it('is a test') { expect(true).to be true }
  describe 'plip' do
    it { expect(32).to be 32 }
    it { expect(33).to be 32 }
    it { expect(32).to be 32 }
    it { expect(32).to be 32 }
  end
end