Commit 85be7e98649b133facd669725c5bb8a73753aecf

Authored by Dan Croak
1 parent 04a83107

fakeweb needs to be loaded into cucumber environment

Showing 1 changed file with 3 additions and 0 deletions   Show diff stats
config/environments/cucumber.rb
... ... @@ -35,6 +35,8 @@ config.gem 'builder',
35 35 :lib => false
36 36 config.gem 'cucumber',
37 37 :version => '0.3.11'
  38 +config.gem 'fakeweb',
  39 + :version => '>= 1.2.5'
38 40  
39 41 # Webrat and dependencies
40 42 # NOTE: don't vendor nokogiri - it's a binary Gem
... ... @@ -47,6 +49,7 @@ config.gem 'webrat',
47 49 require 'rubygems'
48 50 require 'factory_girl'
49 51 require 'shoulda'
  52 +require 'fakeweb'
50 53  
51 54 HOST = "localhost"
52 55  
... ...