Feature: New Feature In order to use cool feature as a new user I want do include this

Scenario: Singing

Given: I am a good singing

it('should be true', function() {
  return true.should.eql(true);
});
return it('should be true too', function() {
  return true.should.eql(true);
});
When: I sing

return voice = 'good';
Then: it should sound good

return voice.should.eql('good');

=== /test/describe.spec ===

Given: Test

return true.should.eql(true);

When:

should be true

return true.should.eql(true);
Then: Yup

return true.should.eql(true);