spec/savon/model_spec.rb in savon_model-0.3.0 vs spec/savon/model_spec.rb in savon_model-0.3.1
- old
+ new
@@ -10,14 +10,9 @@
it "should should pass a given block to a new Savon::Client"
it "should memoize the Savon::Client" do
model.client.should equal(model.client)
end
-
- it "should memoize the Savon::Client when inherited" do
- supermodel = Class.new model
- supermodel.client.should equal(model.client)
- end
end
describe ".endpoint" do
it "should set the SOAP endpoint" do
model.endpoint "http://example.com"