Rakefile in serverspec-2.0.0.beta14 vs Rakefile in serverspec-2.0.0.beta15

- old
+ new

@@ -7,11 +7,11 @@ if defined?(RSpec) task :spec => 'spec:all' namespace :spec do - task :all => [ 'spec:type:all', 'spec:helper', 'spec:unit' ] + task :all => [ 'spec:type:all', 'spec:helper' ] namespace :type do oses = Dir.glob('spec/type/*').map {|d| File.basename(d)} task :all => oses.map {|os| "spec:type:#{os}" } @@ -23,12 +23,8 @@ end end RSpec::Core::RakeTask.new(:helper) do |t| t.pattern = "spec/helper/*_spec.rb" - end - - RSpec::Core::RakeTask.new(:unit) do |t| - t.pattern = "spec/unit/*_spec.rb" end end end