From 5791123b485a344acaa886c9903a091af47312ab Mon Sep 17 00:00:00 2001 From: Daniel Martin Date: Fri, 17 Dec 2010 08:09:25 +0000 Subject: [PATCH] We are trying to get serious with testing. We will be using RSpec --- .rspec | 1 + Gemfile | 5 +++-- autotest/discover.rb | 2 ++ spec/spec_helper.rb | 27 +++++++++++++++++++++++++++ 4 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 .rspec create mode 100644 autotest/discover.rb create mode 100644 spec/spec_helper.rb diff --git a/.rspec b/.rspec new file mode 100644 index 00000000..53607ea5 --- /dev/null +++ b/.rspec @@ -0,0 +1 @@ +--colour diff --git a/Gemfile b/Gemfile index c4ea9175..3186479d 100644 --- a/Gemfile +++ b/Gemfile @@ -20,6 +20,7 @@ end # Bundle gems for the local environment. Make sure to # put test-only gems in this group so their generators # and rake tasks are available in development mode: -# group :development, :test do +group :development, :test do + gem 'rspec-rails' # gem 'webrat' -# end +end diff --git a/autotest/discover.rb b/autotest/discover.rb new file mode 100644 index 00000000..f421dc5f --- /dev/null +++ b/autotest/discover.rb @@ -0,0 +1,2 @@ +Autotest.add_discovery { "rails" } +Autotest.add_discovery { "rspec2" } diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 00000000..9b8b02c8 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,27 @@ +# This file is copied to spec/ when you run 'rails generate rspec:install' +ENV["RAILS_ENV"] ||= 'test' +require File.expand_path("../../config/environment", __FILE__) +require 'rspec/rails' + +# Requires supporting ruby files with custom matchers and macros, etc, +# in spec/support/ and its subdirectories. +Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f} + +RSpec.configure do |config| + # == Mock Framework + # + # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line: + # + # config.mock_with :mocha + # config.mock_with :flexmock + # config.mock_with :rr + config.mock_with :rspec + + # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures + config.fixture_path = "#{::Rails.root}/spec/fixtures" + + # If you're not using ActiveRecord, or you'd prefer not to run each of your + # examples within a transaction, remove the following line or assign false + # instead of true. + config.use_transactional_fixtures = true +end