Sha256: 7a9306e178c0b4b448b5ba614c36520d5a05d9d85a14785c82d5a6ffeb6f79b7
Contents?: true
Size: 741 Bytes
Versions: 14
Compression:
Stored size: 741 Bytes
Contents
require 'spec_helper' feature 'decorating controller ivar' do background do @matz = Author.create! :name => 'matz' Author.create! :name => 'takahashim' end after do Author.delete_all end scenario 'decorating a model object in ivar' do visit "/authors/#{@matz.id}" page.should have_content 'matz' page.should have_content 'matz'.capitalize end scenario 'decorating model scope in ivar' do visit '/authors' page.should have_content 'takahashim' page.should have_content 'takahashim'.reverse end scenario "decorating models' array in ivar" do visit '/authors?variable_type=array' page.should have_content 'takahashim' page.should have_content 'takahashim'.reverse end end
Version data entries
14 entries across 13 versions & 2 rubygems