diff options
author | Joachim Filip Ignacy Bartosik <jbartosik@gmail.com> | 2011-06-06 20:50:58 +0200 |
---|---|---|
committer | Joachim Filip Ignacy Bartosik <jbartosik@gmail.com> | 2011-06-10 18:11:42 +0200 |
commit | a79293f652cedf63f9f3cd88107e98b9b4da99f3 (patch) | |
tree | e4621b126b132c31c6d65e250f962fd1d7a6eb24 /site/spec/spec_helper.rb | |
parent | Bot obtains voters, agenda items and voting options lists from webapp (diff) | |
download | council-webapp-a79293f652cedf63f9f3cd88107e98b9b4da99f3.tar.gz council-webapp-a79293f652cedf63f9f3cd88107e98b9b4da99f3.tar.bz2 council-webapp-a79293f652cedf63f9f3cd88107e98b9b4da99f3.zip |
Send email reminders about meetings using delayed_job
Diffstat (limited to 'site/spec/spec_helper.rb')
-rw-r--r-- | site/spec/spec_helper.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/site/spec/spec_helper.rb b/site/spec/spec_helper.rb index a8b8aea..47ed37e 100644 --- a/site/spec/spec_helper.rb +++ b/site/spec/spec_helper.rb @@ -15,3 +15,8 @@ RSpec.configure do |config| config.mock_with :rspec config.use_transactional_fixtures = true end + +RSpec.configure do |config| + config.include(EmailSpec::Helpers) + config.include(EmailSpec::Matchers) +end |