mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
26 lines
578 B
CoffeeScript
26 lines
578 B
CoffeeScript
require '../../common'
|
|
|
|
describe 'LevelSystem', ->
|
|
|
|
raw =
|
|
name:'Bashing'
|
|
description:'Performs Thang bashing updates for Bashes Thangs.'
|
|
code: """class Bashing extends System
|
|
constructor: (world) ->
|
|
super world
|
|
"""
|
|
codeLanguage: 'coffeescript'
|
|
official: true
|
|
permissions:simplePermissions
|
|
|
|
comp = new LevelSystem(raw)
|
|
|
|
it 'clears things first', (done) ->
|
|
LevelSystem.remove {}, (err) ->
|
|
expect(err).toBeNull()
|
|
done()
|
|
|
|
it 'can be saved', (done) ->
|
|
comp.save (err) ->
|
|
expect(err).toBeNull()
|
|
done()
|