diff options
author | stuconnolly <stuart02@gmail.com> | 2012-05-07 11:07:44 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-05-07 11:07:44 +0000 |
commit | 38eae1b30dc9eb65138741079737cb3e5adcc354 (patch) | |
tree | c1a390cb0d696450a2b9a4dfc57fd3f96eedb11c /UnitTests | |
parent | e638ab4bc8e1414b6333370af07f851bd218f623 (diff) | |
download | sequelpro-38eae1b30dc9eb65138741079737cb3e5adcc354.tar.gz sequelpro-38eae1b30dc9eb65138741079737cb3e5adcc354.tar.bz2 sequelpro-38eae1b30dc9eb65138741079737cb3e5adcc354.zip |
Move the BASH command code from the string additions category to remove the dependency on SP specific code and all the tests to build successfully.
Diffstat (limited to 'UnitTests')
-rw-r--r-- | UnitTests/SPStringAdditionsTest.h | 2 | ||||
-rw-r--r-- | UnitTests/SPStringAdditionsTest.m | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/UnitTests/SPStringAdditionsTest.h b/UnitTests/SPStringAdditionsTest.h index 66570b35..786df76f 100644 --- a/UnitTests/SPStringAdditionsTest.h +++ b/UnitTests/SPStringAdditionsTest.h @@ -27,4 +27,6 @@ @interface SPStringAdditionsTest : SenTestCase +- (void)testStringByRemovingCharactersInSet; + @end diff --git a/UnitTests/SPStringAdditionsTest.m b/UnitTests/SPStringAdditionsTest.m index 7f151b3a..b0143a0f 100644 --- a/UnitTests/SPStringAdditionsTest.m +++ b/UnitTests/SPStringAdditionsTest.m @@ -34,7 +34,7 @@ static NSString *SPUTFTestString = @"In der Kürze liegt die Würz"; /** * stringByRemovingCharactersInSet test case. */ -/*- (void)testStringByRemovingCharactersInSet +- (void)testStringByRemovingCharactersInSet { NSString *charsToRemove = @"abc',ü"; @@ -55,6 +55,6 @@ static NSString *SPUTFTestString = @"In der Kürze liegt die Würz"; expectedUTFString, @"The following characters should have been removed %@", charsToRemove); -}*/ +} @end |