Files
RootPanel/plugin/wiki/test/wiki.test.coffee
2014-11-15 19:00:20 +08:00

22 lines
502 B
CoffeeScript

(if isPluginEnable('wiki') then describe else describe.skip) 'plugin/wiki', ->
agent = null
before ->
agent = supertest.agent app.express
describe 'router', ->
it 'GET /', (done) ->
agent.get '/wiki'
.expect 200
.end done
it 'GET /:category/:title', (done) ->
agent.get '/wiki/FAQ/Billing.md'
.expect 200
.end done
it 'GET /:category/:title when not exist', (done) ->
agent.get '/wiki/FAQ/not_exist'
.expect 404
.end done