Sha256: 0156b386e0a7666b2ea02147244a41352ad59144318e4e75267b1b32456174c8
Contents?: true
Size: 973 Bytes
Versions: 2
Compression:
Stored size: 973 Bytes
Contents
require 'rubygems' if RUBY_VERSION < '1.9.0' require 'rack' if RUBY_VERSION < '1.9.0' # autoload broken in 1.8? require 'rest-graph' require 'rr' require 'webmock' require 'bacon' # for testing lighten (serialization) require 'yaml' include RR::Adapters::RRMethods include WebMock WebMock.disable_net_connect! Bacon.summary_on_exit module TestHelper module_function def ensure_rollback yield ensure # the defaults should remain the same! RestGraph.send(:extend, RestGraph::DefaultAttributes.dup) TestHelper.attrs_no_callback.each{ |name| RestGraph.new.send(name).should == RestGraph::DefaultAttributes.send("default_#{name}") } end def normalize_query query '?' + query[1..-1].split('&').sort.join('&') end def normalize_url url url.sub(/\?.+/){ |query| TestHelper.normalize_query(query) } end def attrs_no_callback RestGraph::Attributes.reject{ |attr| attr.to_s =~ /_handler/ } end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rest-graph-1.5.0 | test/common.rb |
rest-graph-1.4.6 | test/common.rb |