test.rb
1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Settings specified here will take precedence over those in config/environment.rb
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!
config.cache_classes = true
# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true
# Show full error reports and disable caching
config.action_controller.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Disable request forgery protection in test environment
config.action_controller.allow_forgery_protection = false
# Tell ActionMailer not to deliver emails to the real world.
# The :test delivery method accumulates sent emails in the
# ActionMailer::Base.deliveries array.
config.action_mailer.delivery_method = :test
# rake gems:install RAILS_ENV=test
config.gem 'factory_girl',
:source => 'http://gemcutter.org',
:version => '>= 1.2.3'
config.gem 'thoughtbot-shoulda',
:lib => 'shoulda',
:source => 'http://gems.github.com',
:version => '>= 2.10.1'
config.gem 'jtrupiano-timecop',
:lib => 'timecop',
:source => 'http://gems.github.com',
:version => '0.2.1'
config.gem 'fakeweb',
:version => '>= 1.2.5'
config.gem 'jferris-mocha',
:version => '0.9.5.0.1241126838',
:source => 'http://gems.github.com',
:lib => 'mocha'
HOST = 'localhost'
AUTHORIZE_NET_API_LOGIN_ID = ''
AUTHORIZE_NET_TRANSACTION_KEY = ''
PAYPAL_API_LOGIN = ''
PAYPAL_API_PASSWORD = ''
PAYPAL_API_SIGNATURE = ''