Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. // bad - what part of login are we testing?
  2. test('login', function(assert) {
  3. // ...
  4. });
  5.  
  6. // good - i know exactly what this test is doing
  7. test('user can successfully log in', function(assert) {
  8. // ...
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement