Sha256: a589dbbe22099150aa15b42b8660864e7174aabc58bcb914512b74d224e0864c
Contents?: true
Size: 1.86 KB
Versions: 3
Compression:
Stored size: 1.86 KB
Contents
# Configure Rails Environment ENV["RAILS_ENV"] = "test" require File.expand_path("../dummy/config/environment.rb", __FILE__) require 'rails-controller-testing' $dir = File.dirname(File.expand_path(__FILE__)) require 'rspec/rails' require 'rexml/document' # Requires supporting ruby files with custom matchers and macros, etc, # in spec/support and it's subdirectories Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } # Rails defines a custom params parser for XML that expects a 'hash' key as the root, but our XML doesn't match that ActionController::TestRequest.prepend(Module.new do def initialize(*) super @custom_param_parsers[:xml] = lambda { |raw_post| Hash.from_xml(raw_post) } end end) RSpec.configure do |config| config.expect_with :rspec do |c| c.syntax = :expect end config.before(:suite) do # Make sure we can run redis if !system("which redis-server") puts '', "** can't find `redis-server` in your path" abort '' end # Start redis puts "Starting redis for testing at localhost:9736" `redis-server #{$dir}/support/redis/redis-test.conf` QuickbooksWebConnector.redis = 'localhost:9736' end config.before(:each) do QuickbooksWebConnector.redis.flushall QuickbooksWebConnector.reset_configuration! end # Kill our own redis we started config.after(:suite) do processes = `ps -A -o pid,command | grep [r]edis-test`.split($/) pids = processes.map { |process| process.split(" ")[0] } puts '', "Killing test redis server..." pids.each { |pid| Process.kill("TERM", pid.to_i) } system("rm -f #{$dir}/support/redis/dump.rdb") end end # fixture classes class SomeBuilder def self.perform(*args) end end class SomeBuilderThatErrors def self.perform(*args) raise 'FAILURE' end end class SomeHandler def self.perform(response_xml, *args) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
quickbooks_web_connector-0.8.0 | spec/spec_helper.rb |
quickbooks_web_connector-0.7.1 | spec/spec_helper.rb |
quickbooks_web_connector-0.7.0 | spec/spec_helper.rb |