summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorBryan McLellan <btm@opscode.com>2011-10-10 08:36:31 -0700
committerBryan McLellan <btm@opscode.com>2011-10-10 08:36:31 -0700
commit01d9921ca7f530b3f19157a5a42a23a2bfac8acc (patch)
tree815382a7c5c9c7d2ddb7c7f869b25918671c412d /Rakefile
parent3cb02ab57e57557f965da4a3cb1f4731822f36b0 (diff)
downloadchef-01d9921ca7f530b3f19157a5a42a23a2bfac8acc.tar.gz
add chef-expander to top level spec task
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index dbab5e2c39..85cca51fdb 100644
--- a/Rakefile
+++ b/Rakefile
@@ -45,6 +45,7 @@ desc "Run the rspec tests"
task :spec do
Dir.chdir("chef") { sh "rake spec" }
Dir.chdir("chef-server-api") { sh "rake spec" }
+ Dir.chdir("chef-expander") { sh "rake spec" }
end
task :default => :spec