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:
parent
6b4bbb4274
commit
b641ab5bae
1 changed files with 0 additions and 15 deletions
|
@ -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
|
Loading…
Reference in a new issue