2016-04-12 12:40:37 -04:00
|
|
|
import {
|
|
|
|
AsyncTestCompleter,
|
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
describe,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
it,
|
|
|
|
xit
|
|
|
|
} from 'angular2/testing_internal';
|
2015-08-20 17:28:25 -04:00
|
|
|
import {BaseRequestOptions, RequestOptions} from 'angular2/src/http/base_request_options';
|
2015-12-03 16:44:14 -05:00
|
|
|
import {RequestMethod} from 'angular2/src/http/enums';
|
2015-06-13 00:50:19 -04:00
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('BaseRequestOptions', () => {
|
|
|
|
it('should create a new object when calling merge', () => {
|
|
|
|
var options1 = new BaseRequestOptions();
|
2015-12-03 16:44:14 -05:00
|
|
|
var options2 = options1.merge(new RequestOptions({method: RequestMethod.Delete}));
|
2015-06-13 00:50:19 -04:00
|
|
|
expect(options2).not.toBe(options1);
|
2015-12-03 16:44:14 -05:00
|
|
|
expect(options2.method).toBe(RequestMethod.Delete);
|
2015-06-13 00:50:19 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should retain previously merged values when merging again', () => {
|
|
|
|
var options1 = new BaseRequestOptions();
|
2015-12-03 16:44:14 -05:00
|
|
|
var options2 = options1.merge(new RequestOptions({method: RequestMethod.Delete}));
|
|
|
|
expect(options2.method).toBe(RequestMethod.Delete);
|
2015-06-13 00:50:19 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|