Skip to content

Commit

Permalink
Change tests not to be included in cocoapods
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Van Landuyt committed Dec 8, 2011
1 parent 992758c commit b2b4eef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -3,7 +3,7 @@ require 'rake'
desc "Runs the unit tests"
task :test do
# Build and link
`clang -framework Foundation --std=c99 tests.m NSArray+Coby.m NSDictionary+Coby.m NSObject+Coby.m NSString+Coby.m -o test_runner`
`clang -framework Foundation --std=c99 ./tests/tests.m ./NSArray+Coby.m ./NSDictionary+Coby.m ./NSObject+Coby.m ./NSString+Coby.m -o ./test_runner`

# Run it
`./test_runner`
Expand Down
2 changes: 1 addition & 1 deletion tests.m → tests/tests.m
Expand Up @@ -6,7 +6,7 @@
//

#import <Foundation/Foundation.h>
#import "Coby.h"
#import "../Coby.h"

// # Tests setup
static void WithPool(void (^block)(void))
Expand Down

0 comments on commit b2b4eef

Please sign in to comment.