AutoCommit Die Sep 1 00:03:02 CEST 2015

This commit is contained in:
Andreas Stephanides
2015-09-01 00:03:02 +02:00
parent 3bcd8389d4
commit 1cea790324

View File

@@ -5,18 +5,21 @@ describe "fetprofiles/show", :type => :view do
# @fetprofile =
#assign(:fetprofile, stub_model(Fetprofile, FactoryGirl.attributes_for(:fetprofile)))
default_url_options[:locale] = :de
assign(:fetprofile, FactoryGirl.create(:fetprofile))
@fetprofile = FactoryGirl.create(:fetprofile)
assign(:fetprofile,@fetprofile)
assign(:memberships, [])
end
it "renders attributes in <p>" do
render
render_template "show"
# Run the generator again with the --webrat flag if you want to use webrat matchers
rendered.should match(/Vorname/)
rendered.should match(/Nachname/)
rendered.should match(/Short/)
rendered.should match(/Fetmailalias/)
rendered.should match(/MyText/)
# expect(rendered).to include_text @fetprofile.vorname
rendered.should match(@fetprofile.vorname)
# rendered.should match(/Nachname/)
# rendered.should match(/Short/)
# rendered.should match(/Fetmailalias/)
# rendered.should match(/MyText/)
rendered.should match(/false/)
# rendered.should match(/false/)
end
end