summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorBryan McLellan <btm@opscode.com>2011-10-10 07:58:25 -0700
committerBryan McLellan <btm@opscode.com>2011-10-10 07:58:25 -0700
commit70be333cf382df069400b5011275d5b1ff111771 (patch)
treedd35376a7df65eeb4f9374389c873951a2bcab48 /Rakefile
parentfb5474eed66b72950b16e055228ba62ced8b5d80 (diff)
downloadchef-70be333cf382df069400b5011275d5b1ff111771.tar.gz
Add chef-server-api to top level rake spec
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 631baa87cb..dbab5e2c39 100644
--- a/Rakefile
+++ b/Rakefile
@@ -44,6 +44,7 @@ end
desc "Run the rspec tests"
task :spec do
Dir.chdir("chef") { sh "rake spec" }
+ Dir.chdir("chef-server-api") { sh "rake spec" }
end
task :default => :spec