chore: router move import changes

This commit is contained in:
Misko Hevery
2016-05-02 10:36:58 -07:00
committed by Igor Minar
parent d930ad1816
commit 107016ec12
74 changed files with 428 additions and 238 deletions

View File

@ -8,8 +8,8 @@ import {
beforeEach,
} from '@angular/core/testing/testing_internal';
import {ParamRoutePath} from '../../../../router/src/rules/route_paths/param_route_path';
import {parser, Url} from '../../../../router/src/url_parser';
import {ParamRoutePath} from '../../../src/rules/route_paths/param_route_path';
import {parser, Url} from '../../../src/url_parser';
export function main() {
describe('PathRecognizer', () => {

View File

@ -8,9 +8,9 @@ import {
beforeEach,
} from '@angular/core/testing/testing_internal';
import {GeneratedUrl} from '../../../../router/src/rules/route_paths/route_path';
import {RegexRoutePath} from '../../../../router/src/rules/route_paths/regex_route_path';
import {parser, Url} from '../../../../router/src/url_parser';
import {GeneratedUrl} from '../../../src/rules/route_paths/route_path';
import {RegexRoutePath} from '../../../src/rules/route_paths/regex_route_path';
import {parser, Url} from '../../../src/url_parser';
function emptySerializer(params) {
return new GeneratedUrl('', {});