spec/spec_helper.rb in fozzie-0.0.21 vs spec/spec_helper.rb in fozzie-0.0.22
- old
+ new
@@ -1,5 +1,7 @@
+ENV['RACK_ENV'] ||= 'test'
+
root = File.expand_path('../', File.dirname(__FILE__))
lib = File.expand_path('lib', root)
$:.unshift(root, lib)
require 'simplecov'
@@ -8,9 +10,10 @@
RSpec.configure do |config|
config.mock_with :mocha
end
require 'fozzie'
+
Fozzie.configure do |config|
config.host = '127.0.0.1'
config.port = 8809
end
\ No newline at end of file