diff options
author | stuconnolly <stuart02@gmail.com> | 2010-10-24 11:30:12 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-10-24 11:30:12 +0000 |
commit | 729acc2f2d4954130798ed382dca478eade14302 (patch) | |
tree | b3ee47681377aa2e274470118f54e9767221c493 /UnitTests | |
parent | c965b60b6ec45f56aa406296b5c35f48360f175a (diff) | |
download | sequelpro-729acc2f2d4954130798ed382dca478eade14302.tar.gz sequelpro-729acc2f2d4954130798ed382dca478eade14302.tar.bz2 sequelpro-729acc2f2d4954130798ed382dca478eade14302.zip |
- Split out all of SPExportController's delegate methods to their own category.
- Prepare for the implementation of PDF and HTML export by hiding the export options box for export types that don't need it.
- Fix some spacing issues on the export dialog.
- Create a new SPCategoryAdditions header that is included in the apps precompiled header, making all additions available to all classes.
- Update strings files.
Diffstat (limited to 'UnitTests')
-rw-r--r-- | UnitTests/SPDatabaseCopyTest.m | 2 | ||||
-rw-r--r-- | UnitTests/SPDatabaseRenameTest.m | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/UnitTests/SPDatabaseCopyTest.m b/UnitTests/SPDatabaseCopyTest.m index 593989de..a1ed99fe 100644 --- a/UnitTests/SPDatabaseCopyTest.m +++ b/UnitTests/SPDatabaseCopyTest.m @@ -24,13 +24,13 @@ // More info at <http://code.google.com/p/sequel-pro/> #import <OCMock/OCMock.h> + #import "SPAlertSheets.h" #import "SPDatabaseCopyTest.h" #import "SPDatabaseCopy.h" #import "SPTableCopy.h" #import "MCPConnection.h" #import "SPDatabaseInfo.h" -#import "SPStringAdditions.h" #import "SPLogger.h" @implementation SPDatabaseCopyTest diff --git a/UnitTests/SPDatabaseRenameTest.m b/UnitTests/SPDatabaseRenameTest.m index 7e787caa..1d432c73 100644 --- a/UnitTests/SPDatabaseRenameTest.m +++ b/UnitTests/SPDatabaseRenameTest.m @@ -30,7 +30,6 @@ #import "SPTableCopy.h" #import "MCPConnection.h" #import "SPDatabaseInfo.h" -#import "SPStringAdditions.h" #import "SPLogger.h" @implementation SPDatabaseRenameTest @@ -53,7 +52,7 @@ { id mockConnection = [OCMockObject niceMockForClass:[MCPConnection class]]; - eturn mockConnection; + return mockConnection; } - (id)getMockDBInfo |