Rakefile in vagrant-aws-0.7.0 vs Rakefile in vagrant-aws-0.7.1

- old
+ new

@@ -13,9 +13,10 @@ # This installs the tasks that help with gem creation and # publishing. Bundler::GemHelper.install_tasks # Install the `spec` task so that we can run tests. -RSpec::Core::RakeTask.new - +RSpec::Core::RakeTask.new(:spec) do |t| + t.rspec_opts = "--order defined" +end # Default task is to run the unit tests -task :default => "spec" +task :default => :spec