From 2d929e73ecc3f77ec85737a19601fe54a0101a32 Mon Sep 17 00:00:00 2001 From: vsavkin Date: Sun, 19 Apr 2015 12:43:56 -0700 Subject: [PATCH] cleanup(change_detection): moved pipes-related tests to the pipes dir --- .../change_detection/{ => pipes}/iterable_changes_spec.js | 4 ++-- .../change_detection/{ => pipes}/keyvalue_changes_spec.js | 2 +- .../test/change_detection/{ => pipes}/pipe_registry_spec.js | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename modules/angular2/test/change_detection/{ => pipes}/iterable_changes_spec.js (99%) rename modules/angular2/test/change_detection/{ => pipes}/keyvalue_changes_spec.js (99%) rename modules/angular2/test/change_detection/{ => pipes}/pipe_registry_spec.js (100%) diff --git a/modules/angular2/test/change_detection/iterable_changes_spec.js b/modules/angular2/test/change_detection/pipes/iterable_changes_spec.js similarity index 99% rename from modules/angular2/test/change_detection/iterable_changes_spec.js rename to modules/angular2/test/change_detection/pipes/iterable_changes_spec.js index d5e8da0f9f..769bfc69c4 100644 --- a/modules/angular2/test/change_detection/iterable_changes_spec.js +++ b/modules/angular2/test/change_detection/pipes/iterable_changes_spec.js @@ -4,8 +4,8 @@ import {IterableChanges} from 'angular2/src/change_detection/pipes/iterable_chan import {NumberWrapper} from 'angular2/src/facade/lang'; import {ListWrapper, MapWrapper} from 'angular2/src/facade/collection'; -import {TestIterable} from './iterable'; -import {iterableChangesAsString} from './util'; +import {TestIterable} from '../iterable'; +import {iterableChangesAsString} from '../util'; // todo(vicb): UnmodifiableListView / frozen object when implemented export function main() { diff --git a/modules/angular2/test/change_detection/keyvalue_changes_spec.js b/modules/angular2/test/change_detection/pipes/keyvalue_changes_spec.js similarity index 99% rename from modules/angular2/test/change_detection/keyvalue_changes_spec.js rename to modules/angular2/test/change_detection/pipes/keyvalue_changes_spec.js index 22864005af..3a7d18fa95 100644 --- a/modules/angular2/test/change_detection/keyvalue_changes_spec.js +++ b/modules/angular2/test/change_detection/pipes/keyvalue_changes_spec.js @@ -2,7 +2,7 @@ import {describe, it, iit, xit, expect, beforeEach, afterEach} from 'angular2/te import {KeyValueChanges} from 'angular2/src/change_detection/pipes/keyvalue_changes'; import {NumberWrapper, isJsObject} from 'angular2/src/facade/lang'; import {MapWrapper} from 'angular2/src/facade/collection'; -import {kvChangesAsString} from './util'; +import {kvChangesAsString} from '../util'; // todo(vicb): Update the code & tests for object equality export function main() { diff --git a/modules/angular2/test/change_detection/pipe_registry_spec.js b/modules/angular2/test/change_detection/pipes/pipe_registry_spec.js similarity index 100% rename from modules/angular2/test/change_detection/pipe_registry_spec.js rename to modules/angular2/test/change_detection/pipes/pipe_registry_spec.js