require 'rspec' # require_relative '../lib/rspec_html_formatter' describe 'The second Test' do it 'should do cool test stuff' do pending('coming soon') fail end it 'should do amazing test stuff' do expect('boats').to eq 'boats' end it 'should do superb test stuff' do #-> Given there are some ships #-> When I sail one #-> Then it should go fast expect('ships').to eq 'ships' end it 'should do example stuff' do expect('apple').to eq 'apple' expect('pear').to eq 1 #-> Given I have some stuff to do #-> And I like to do is wait here for a while #-> Then I do it real good!! end it 'should do very cool test stuff' do #-> Given I have some cars expect('cars').to eq 'cars' #-> And I drive one of them expect('diesel').to eq 'diesels' #-> Then I should go fast expect('apple').to eq 'apple' end it 'should do very amazing test stuff' do expect('boats').to eq 'boats' end it 'should do very superb test stuff' do expect('ships').to eq 'ships' end it 'should do very rawesome test stuff' do #-> Given I have some cars pending('give me a woop') fail end it 'should do insane and cool test stuff' do expect('ships').to eq 'ships' end end