Created
September 7, 2009 04:20
-
-
Save scudco/182146 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span id="business_name"><%= @business.name %></span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe "business #show in HTML" do | |
it "should render the business name" do | |
assigns[:business] = Factory(:business, :name => 'Foo Bar') | |
render 'businesses/show' | |
response.should have_tag('span#business_name', 'Foo Bar') | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment