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.

15 lines
219 B

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