mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
13 lines
No EOL
319 B
CoffeeScript
13 lines
No EOL
319 B
CoffeeScript
require '../../common'
|
|
|
|
describe 'Article', ->
|
|
|
|
it 'clears things first', (done) ->
|
|
Article.remove {}, (err) ->
|
|
expect(err).toBeNull()
|
|
done()
|
|
|
|
it 'can be saved', (done) ->
|
|
article = new Article(name:'List Comprehension', body:"A programmer's best friend.")
|
|
article.save (err) ->
|
|
done() |