You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
214 B

require 'spec_helper'
describe "hosts/index.html.erb" do
before(:each) do
assign(:hosts, [
stub_model(Host),
stub_model(Host)
])
end
it "renders a list of hosts" do
render
end
end