Sha256: f8341e6a78d8a904f4cb74c9d79637fb79978a3320fb581671e65bb3dfc4aec5

Contents?: true

Size: 451 Bytes

Versions: 1

Compression:

Stored size: 451 Bytes

Contents

require File.dirname(__FILE__) + "/spec_helper"

describe Braintree do
  xit "ssl warning -- doesn't produce warnings if loading braintree.rb twice" do
    lib_dir = File.dirname(__FILE__) + "/../../lib"
    braintree_file = "#{lib_dir}/braintree.rb"
    File.exist?(braintree_file).should == true
    output = `ruby -r rubygems -I #{lib_dir} -e 'load #{braintree_file.inspect}; load #{braintree_file.inspect}' 2>&1`
    output.should == ""
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
braintree-2.5.1 spec/unit/braintree_spec.rb