Skip to content

Commit

Permalink
Move the dependency :test => :compile from Rakefile to test_unit.rake
Browse files Browse the repository at this point in the history
  • Loading branch information
avh4 committed Jul 5, 2008
1 parent 97ebf23 commit 2681880
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions app_generators/rbiphonetest/templates/Rakefile
Expand Up @@ -10,8 +10,6 @@ end

task :compile => "objc:compile"

task :test => :compile

namespace :objc do
# look for Classes/*.m files containing a line "void Init_ClassName"
# These are the primary classes for bundles; make a bundle for each
Expand Down
2 changes: 2 additions & 0 deletions rbiphonetest_generators/model/templates/test_unit.rake
Expand Up @@ -2,6 +2,8 @@ require "rake/testtask"

task :default => :test

task :test => :compile

Rake::TestTask.new do |t|
t.libs << "test" << "test/bundles"
t.test_files = FileList['test/test*.rb']
Expand Down

0 comments on commit 2681880

Please sign in to comment.