1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

removed a contrived ARes example

This commit is contained in:
Josh Kalderimis 2011-05-17 19:32:31 -04:00
parent 6b4bbb4274
commit b641ab5bae

View file

@ -1,15 +0,0 @@
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
require 'active_resource'
require 'active_support/core_ext/hash/conversions'
ActiveSupport::XmlMini.backend = ENV['XMLMINI'] || 'REXML'
ActiveResource::HttpMock.respond_to do |mock|
mock.get '/people/1.xml', {}, { :id => 1, :name => 'bob' }.to_xml(:root => 'person')
end
class Person < ActiveResource::Base
self.site = 'http://localhost/'
end
bob = Person.find(1)
puts bob.inspect