Re-namespacing a bit to clear out some fairly old stuff from the top level
This commit is contained in:
21
oldstuff/map-mash/spec/views/maps/index.html.erb_spec.rb
Normal file
21
oldstuff/map-mash/spec/views/maps/index.html.erb_spec.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe "/maps/index.html.erb" do
|
||||
include MapsHelper
|
||||
|
||||
before(:each) do
|
||||
assigns[:maps] = [
|
||||
stub_model(Map,
|
||||
:name => "value for name"
|
||||
),
|
||||
stub_model(Map,
|
||||
:name => "value for name"
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
it "renders a list of maps" do
|
||||
render
|
||||
response.should have_tag("tr>td", "value for name".to_s, 2)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user