diff options
author | stuconnolly <stuart02@gmail.com> | 2013-01-28 22:54:23 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2013-01-28 22:54:23 +0000 |
commit | 4d09d6c010fac04e9b589ae53e6b272d369ad62b (patch) | |
tree | 22d2b37f1ecf56aa3757de32b9a8724359972c61 /Frameworks | |
parent | 29797ba0fe84e314e51b994df04140c8621602dd (diff) | |
download | sequelpro-4d09d6c010fac04e9b589ae53e6b272d369ad62b.tar.gz sequelpro-4d09d6c010fac04e9b589ae53e6b272d369ad62b.tar.bz2 sequelpro-4d09d6c010fac04e9b589ae53e6b272d369ad62b.zip |
PostgresKit: Attempt to fix tests.
Diffstat (limited to 'Frameworks')
-rw-r--r-- | Frameworks/PostgresKit/Tests/PGDataTypeTests.m | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Frameworks/PostgresKit/Tests/PGDataTypeTests.m b/Frameworks/PostgresKit/Tests/PGDataTypeTests.m index 629ec32a..4c96a97c 100644 --- a/Frameworks/PostgresKit/Tests/PGDataTypeTests.m +++ b/Frameworks/PostgresKit/Tests/PGDataTypeTests.m @@ -117,17 +117,12 @@ static NSUInteger PGTestDatabasePort = 5432; STAssertNotNil(_result, nil); } -- (void)testResultIsOfCorrectType +- (void)testResultIsOfCorrectTypeAndValue { - STAssertEquals([_result class], [_expectedResult class], @"Expected _result to be of type %@, but is actually %@", [_expectedResult className], [_result className]); -} - -- (void)testResultHasCorrectValue -{ STAssertEqualObjects(_result, _expectedResult, nil); } -#pragma mark -r +#pragma mark - #pragma mark Private API - (void)_establishConnection |