spec/spec_helper.rb in outliers-0.3.3 vs spec/spec_helper.rb in outliers-0.5.0.beta1

- old
+ new

@@ -5,16 +5,16 @@ Dir[File.expand_path(File.join(File.dirname(__FILE__),'helpers', '*.rb'))].each do |f| require f end -def credentials - YAML.load(fixture_file 'credentials1.yml') +def account + YAML.load(fixture_file 'account1.yml') end def stub_logger Outliers.logger stub 'test' - Outliers.logger.stub :debug => true, :info => true, :warn => true + Outliers.logger.stub :debug => true, :info => true, :warn => true, :error => true end RSpec.configure do |config| config.include Fixtures end