BREAKING CHANGE
All private exports from 'angular2/src/core/{directives,pipes,forms}' should be replaced with 'angular2/src/common/{directives,pipes,formis}'
Closes #5153
		
	
			
		
			
				
	
	
		
			46 lines
		
	
	
		
			938 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			938 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {
 | 
						|
  ddescribe,
 | 
						|
  describe,
 | 
						|
  it,
 | 
						|
  iit,
 | 
						|
  xit,
 | 
						|
  expect,
 | 
						|
  beforeEach,
 | 
						|
  afterEach
 | 
						|
} from 'angular2/testing_internal';
 | 
						|
 | 
						|
import {UpperCasePipe} from 'angular2/core';
 | 
						|
 | 
						|
export function main() {
 | 
						|
  describe("UpperCasePipe", () => {
 | 
						|
    var upper;
 | 
						|
    var lower;
 | 
						|
    var pipe;
 | 
						|
 | 
						|
    beforeEach(() => {
 | 
						|
      lower = 'something';
 | 
						|
      upper = 'SOMETHING';
 | 
						|
      pipe = new UpperCasePipe();
 | 
						|
    });
 | 
						|
 | 
						|
    describe("transform", () => {
 | 
						|
 | 
						|
      it("should return uppercase", () => {
 | 
						|
        var val = pipe.transform(lower);
 | 
						|
        expect(val).toEqual(upper);
 | 
						|
      });
 | 
						|
 | 
						|
      it("should uppercase when there is a new value", () => {
 | 
						|
        var val = pipe.transform(lower);
 | 
						|
        expect(val).toEqual(upper);
 | 
						|
        var val2 = pipe.transform('wat');
 | 
						|
        expect(val2).toEqual('WAT');
 | 
						|
      });
 | 
						|
 | 
						|
      it("should not support other objects",
 | 
						|
         () => { expect(() => pipe.transform(new Object())).toThrowError(); });
 | 
						|
    });
 | 
						|
 | 
						|
  });
 | 
						|
}
 |