mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
23 lines
545 B
CoffeeScript
23 lines
545 B
CoffeeScript
require '../../common'
|
|
|
|
describe 'LevelComponent', ->
|
|
|
|
raw =
|
|
name: 'Bashes Everything'
|
|
description: 'Makes the unit uncontrollably bash anything bashable, using the bash system.'
|
|
code: 'bash();'
|
|
codeLanguage: 'javascript'
|
|
official: true
|
|
permissions: simplePermissions
|
|
|
|
comp = new LevelComponent(raw)
|
|
|
|
it 'clears things first', (done) ->
|
|
LevelComponent.remove {}, (err) ->
|
|
expect(err).toBeNull()
|
|
done()
|
|
|
|
it 'can be saved', (done) ->
|
|
comp.save (err) ->
|
|
expect(err).toBeNull()
|
|
done()
|