Upgraded Rails and RSpec
[monkeycharger.git] / vendor / plugins / rspec_on_rails / spec / rails / dsl / shared_behaviour_spec.rb
blob6e2d307cd68ef84f764035a1508b637bc57a7b97
1 require File.dirname(__FILE__) + '/../../spec_helper'
3 describe "A shared view behaviour", :shared => true do
4   it "should have some tag with some text" do
5     response.should have_tag('div', 'This is text from a method in the ViewSpecHelper')
6   end
7 end
9 describe "A view behaviour", :behaviour_type => :view do
10   it_should_behave_like "A shared view behaviour"
11   
12   before(:each) do
13     render "view_spec/show"
14   end
15 end
16