Skip to content

Commit

Permalink
Delete a spec that never worked correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
John Firebaugh committed Oct 26, 2009
1 parent 8ee82f1 commit 8209865
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions spec/rails_root/spec/render_spec.rb
Expand Up @@ -16,10 +16,6 @@ def render_colon_widget_with_implicit_assigns
render :widget => TestWidget
end

def render_colon_widget_with_explicit_assigns
render :widget => TestWidget, :foobar => "foobar"
end

def render_template_with_implicit_assigns
@foobar = "foobar"
render :template => "test/implicit_assigns.html.rb"
Expand Down Expand Up @@ -82,12 +78,6 @@ def content
@controller.process(@request, @response)
@response.body.should == "foobar"
end

xit "should render a widget with explicit assigns" do
@request.action = "render_colon_widget_with_explicit_assigns"
@controller.process(@request, @response)
@response.body.should == "foobar"
end
end

describe "#render :template" do
Expand Down

0 comments on commit 8209865

Please sign in to comment.