refactor(StringWrapper): remove useless methods

Closes #5039
This commit is contained in:
Victor Berchet
2015-10-31 13:04:26 -07:00
parent c5693f07dc
commit a0a627f2f9
19 changed files with 33 additions and 110 deletions
+1 -18
View File
@@ -42,24 +42,7 @@ export function main() {
});
describe('String', () => {
var upper, lower, s;
beforeEach(() => {
upper = 'SOMETHING';
lower = 'something';
});
it('should upper case a string', () => {
var str = StringWrapper.toUpperCase(lower);
expect(str).toEqual(upper);
});
it('should lower case a string', () => {
var str = StringWrapper.toLowerCase(upper);
expect(str).toEqual(lower);
});
var s;
describe('slice', () => {
beforeEach(() => { s = "abcdefghij"; });