Displaying 1 result from an estimated 1 matches for "show_initial".
2007 Oct 16
6
RailsStory runner - empty response
...ant to view my home page
So that I can get a birds eye view of the system
}, :type => RailsStory do
Scenario "Publisher with no videos" do
When "visiting", "/" do |page|
get page
end
Then "viewer should see", "companies/show_initial" do |template|
response.should have_text(/Welcome/)
end
end
end
When I run the story, I get the error:
kwigger:~/workspace/rspec-stories alvin$ ruby stories/all.rb
Running 1 scenarios:
Story: View Home Page
As a user
I want to view my home page
So that I can get a birds e...