mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
24 lines
539 B
CoffeeScript
24 lines
539 B
CoffeeScript
require '../../common'
|
|
|
|
describe 'LevelComponent', ->
|
|
|
|
raw =
|
|
name:'Bashes Everything'
|
|
description:'Makes the unit uncontrollably bash anything bashable, using the bash system.'
|
|
code: 'bash();'
|
|
language: '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()
|
|
|