Skip to content

Instantly share code, notes, and snippets.

@stalniy
Created June 25, 2018 18:21
Show Gist options
  • Save stalniy/56322c7a922723fe5616114fcede0d56 to your computer and use it in GitHub Desktop.
Save stalniy/56322c7a922723fe5616114fcede0d56 to your computer and use it in GitHub Desktop.
Lazy vars test subject
describe('Article', function() {
subject(function() {
return Article.create({ title: 'BDD lazy vars' });
});
it('is created as a draft by default', function() {
expect($subject.status).to.equal('draft');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment