repackaging: all the repackaging changes squashed
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
library angular2.test.di.binding_dart_spec;
|
||||
|
||||
import 'dart:mirrors';
|
||||
import 'package:angular2/testing_internal.dart';
|
||||
import 'package:@angular/core/testing/testing_internal.dart';
|
||||
import 'package:angular2/core.dart';
|
||||
|
||||
main() {
|
||||
|
@ -1,5 +1,4 @@
|
||||
import {
|
||||
AsyncTestCompleter,
|
||||
beforeEach,
|
||||
ddescribe,
|
||||
describe,
|
||||
@ -8,9 +7,9 @@ import {
|
||||
inject,
|
||||
it,
|
||||
xit,
|
||||
} from 'angular2/testing_internal';
|
||||
} from '@angular/core/testing/testing_internal';
|
||||
|
||||
import {bind, provide} from 'angular2/core';
|
||||
import {bind, provide} from '@angular/core';
|
||||
|
||||
export function main() {
|
||||
describe('provider', () => {
|
||||
|
@ -1,5 +1,4 @@
|
||||
import {
|
||||
AsyncTestCompleter,
|
||||
beforeEach,
|
||||
ddescribe,
|
||||
describe,
|
||||
@ -8,9 +7,9 @@ import {
|
||||
inject,
|
||||
it,
|
||||
xit,
|
||||
} from 'angular2/testing_internal';
|
||||
import {forwardRef, resolveForwardRef} from 'angular2/src/core/di';
|
||||
import {Type} from 'angular2/src/facade/lang';
|
||||
} from '@angular/core/testing/testing_internal';
|
||||
import {forwardRef, resolveForwardRef} from '@angular/core/src/di';
|
||||
import {Type} from '../../src/facade/lang';
|
||||
|
||||
export function main() {
|
||||
describe("forwardRef", function() {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import {isBlank, stringify, isPresent} from 'angular2/src/facade/lang';
|
||||
import {BaseException, WrappedException} from 'angular2/src/facade/exceptions';
|
||||
import {describe, ddescribe, it, iit, expect, beforeEach} from 'angular2/testing_internal';
|
||||
import {isBlank, stringify, isPresent} from '../../src/facade/lang';
|
||||
import {BaseException, WrappedException} from '../../src/facade/exceptions';
|
||||
import {describe, ddescribe, it, iit, expect, beforeEach} from '@angular/core/testing';
|
||||
import {
|
||||
provide,
|
||||
ReflectiveKey,
|
||||
@ -14,15 +14,15 @@ import {
|
||||
Optional,
|
||||
Inject,
|
||||
Provider
|
||||
} from 'angular2/core';
|
||||
} from '@angular/core';
|
||||
import {
|
||||
ReflectiveInjector_,
|
||||
ReflectiveInjectorInlineStrategy,
|
||||
ReflectiveInjectorDynamicStrategy,
|
||||
ReflectiveProtoInjector
|
||||
} from 'angular2/src/core/di/reflective_injector';
|
||||
import {DependencyMetadata} from 'angular2/src/core/di/metadata';
|
||||
import {ResolvedReflectiveProvider_} from 'angular2/src/core/di/reflective_provider';
|
||||
} from '@angular/core/src/di/reflective_injector';
|
||||
import {DependencyMetadata} from '@angular/core/src/di/metadata';
|
||||
import {ResolvedReflectiveProvider_} from '@angular/core/src/di/reflective_provider';
|
||||
|
||||
class CustomDependencyMetadata extends DependencyMetadata {}
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {describe, iit, it, expect, beforeEach} from 'angular2/testing_internal';
|
||||
import {ReflectiveKey, KeyRegistry} from 'angular2/src/core/di/reflective_key';
|
||||
import {describe, iit, it, expect, beforeEach} from '@angular/core/testing';
|
||||
import {ReflectiveKey, KeyRegistry} from '@angular/core/src/di/reflective_key';
|
||||
|
||||
export function main() {
|
||||
describe("key", function() {
|
||||
@ -17,4 +17,4 @@ export function main() {
|
||||
function() { expect(registry.get(registry.get('car'))).toBe(registry.get('car')); });
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user