Projektstart
This commit is contained in:
24
backend/node_modules/find-my-way/test/issue-145.test.js
generated
vendored
Normal file
24
backend/node_modules/find-my-way/test/issue-145.test.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
'use strict'
|
||||
|
||||
const t = require('tap')
|
||||
const FindMyWay = require('../')
|
||||
|
||||
t.test('issue-145', (t) => {
|
||||
t.plan(8)
|
||||
|
||||
const findMyWay = FindMyWay({ ignoreTrailingSlash: true })
|
||||
|
||||
const fixedPath = function staticPath () {}
|
||||
const varPath = function parameterPath () {}
|
||||
findMyWay.on('GET', '/a/b', fixedPath)
|
||||
findMyWay.on('GET', '/a/:pam/c', varPath)
|
||||
|
||||
t.equal(findMyWay.find('GET', '/a/b').handler, fixedPath)
|
||||
t.equal(findMyWay.find('GET', '/a/b/').handler, fixedPath)
|
||||
t.equal(findMyWay.find('GET', '/a/b/c').handler, varPath)
|
||||
t.equal(findMyWay.find('GET', '/a/b/c/').handler, varPath)
|
||||
t.equal(findMyWay.find('GET', '/a/foo/c').handler, varPath)
|
||||
t.equal(findMyWay.find('GET', '/a/foo/c/').handler, varPath)
|
||||
t.notOk(findMyWay.find('GET', '/a/c'))
|
||||
t.notOk(findMyWay.find('GET', '/a/c/'))
|
||||
})
|
||||
Reference in New Issue
Block a user