Sha256: 521c9a42d24f518f40f83924bfee09d701310561005f012bfa2afd665688d821

Contents?: true

Size: 438 Bytes

Versions: 61

Compression:

Stored size: 438 Bytes

Contents

require File.dirname(__FILE__) + '/../../spec_helper'

describe "A shared view example_group", :shared => true do
  it "should have some tag with some text" do
    response.should have_tag('div', 'This is text from a method in the ViewSpecHelper')
  end
end

describe "A view example_group", :type => :view do
  it_should_behave_like "A shared view example_group"
  
  before(:each) do
    render "view_spec/implicit_helper"
  end
end
  

Version data entries

61 entries across 61 versions & 10 rubygems

Version Path
typo-5.2 vendor/plugins/rspec-rails/spec/rails/example/shared_behaviour_spec.rb