Create note on discontinued development
[merb_mart.git] / spec / views / store / index_spec.rb
blob2614540f93dbaf8dd6724ba608835e0bee9504a7
1 require File.join(File.dirname(__FILE__), "..", "..", 'spec_helper.rb')
3 describe "controller/index" do
5   before( :each ) do
6     @store = Store.new(fake_request)
7     #@controller.instance_variable_set(:@posts, [Post.new(:id => 1, :body => "Merb!")])
8     @body = @store.render(:index)
9   end
11   it "should have something" do
12     #@body.should have_tag(:div, :class => :posts).with_tag(:div, :class => :post)
13   end
15   it "should wrap the body paragraph in a div with class 'post' and the post's id" do
16     #@body.should have_tag(:div, :class => :post, :id => @post.id).with_tag(:p, :class => :body)
17   end
19   it "should render the body body within a post div" do
20     #@body.should have_tag(:div,:id => @post.id).with_tag(:p) {|p| p.should contain(@post.body)}
21   end
22 end