Sha256: 67693b98da99b955a929a00bee794b479ebd923ea372efb965f11f9c705b369d
Contents?: true
Size: 725 Bytes
Versions: 3
Compression:
Stored size: 725 Bytes
Contents
require 'spec_helper' describe "profiles/new" do fixtures :user_groups before(:each) do assign(:profile, stub_model(Profile, :user_group_id => 1 ).as_new_record) assign(:user_groups, UserGroup.all) assign(:libraries, Library.all) assign(:roles, Role.all) assign(:available_languages, Language.available_languages) view.stub(:current_user).and_return(User.find('enjuadmin')) end it "renders new user form" do render # Run the generator again with the --webrat flag if you want to use webrat matchers assert_select "form", :action => profiles_path, :method => "post" do assert_select "input#profile_user_number", :name => "profile[user_number]" end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
enju_leaf-1.1.0.rc17 | spec/views/profiles/new.html.erb_spec.rb |
enju_leaf-1.1.0.rc16 | spec/views/profiles/new.html.erb_spec.rb |
enju_leaf-1.1.0.rc15 | spec/views/profiles/new.html.erb_spec.rb |