codecombat/spec/server/integration/models/LevelSystem.spec.coffee
Scott Erickson 23e3821e24 Switch from jasmine-node to jasmine, run server tests on a single process
This collapses the difference between master and single-process-server-tests, to
remove some larger fixtures files that were in that feature branch.
2015-12-09 14:27:10 -08:00

26 lines
581 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()