Merge pull request #723 from booch/master

Fix test to call correct method under test
This commit is contained in:
Jo Liss 2012-06-05 02:46:57 -07:00
commit 555008c747
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ shared_examples_for "session" do
# method(:html) == method(:body) because these shared examples get run
# against the DSL, which uses forwarding methods. So we test behavior.
@session.visit('/')
@session.body.should include('Hello world!')
@session.html.should include('Hello world!')
end
end