mirror of
https://github.com/kbparagua/paloma
synced 2023-03-27 23:21:17 -04:00
Fix js specs
This commit is contained in:
parent
ddb82e9d5a
commit
7e0dc8c4b3
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
|
||||
describe('Paloma.ControllerFactory', function(){
|
||||
|
||||
var router = new Paloma.Router({namespace: '/', action: '#'});
|
||||
var router = new Paloma.Router({namespaceDelimiter: '/'});
|
||||
|
||||
|
||||
describe('#make(name)', function(){
|
||||
|
@ -45,4 +45,4 @@ describe('Paloma.ControllerFactory', function(){
|
|||
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
describe('Paloma.Router', function(){
|
||||
var delimiter = '/',
|
||||
router = new Paloma.Router(delimiter);
|
||||
router = new Paloma.Router({namespaceDelimiter: delimiter});
|
||||
|
||||
describe('#parse(path)', function(){
|
||||
|
||||
|
@ -49,4 +49,4 @@ describe('Paloma.Router', function(){
|
|||
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue