Sha256: 8fa6e1f2b098ae170897b7ffb7a06d11457a7f45761bd9469bdd19fd194c47a3
Contents?: true
Size: 1.73 KB
Versions: 1
Compression:
Stored size: 1.73 KB
Contents
require 'spec_helper' describe "RailsAdmin Basic Bulk Destroy" do subject { page } describe "successful bulk delete of records" do before(:each) do RailsAdmin::History.destroy_all @players = 3.times.map { FactoryGirl.create(:player) } @delete_ids = @players[0..1].map(&:id) page.driver.post(bulk_action_path(:bulk_action => 'delete', :model_name => "player", :bulk_ids => @delete_ids)) click_button "Yes, I'm sure" end it "should not contain deleted records" do RailsAdmin::AbstractModel.new("Player").count.should == 1 end it "history count should be equal to number of deleted records" do RailsAdmin::History.count.should == @delete_ids.count end it "history items should be for proper table" do RailsAdmin::History.all.each do |history| history.table.should == "Player" end end it "history items should be for proper items" do RailsAdmin::History.all.each do |history| @delete_ids.should include(history.item) end end it "displays a flash notice stating the number of records destroyed" do # 2 Players because @delete_ids.count == 2: page.should have_selector(".alert-message", :text => "2 Players successfully deleted") end end describe "cancelled bulk_deletion" do before(:each) do RailsAdmin::History.destroy_all @players = 3.times.map { FactoryGirl.create(:player) } @delete_ids = @players[0..1].map(&:id) page.driver.post(bulk_action_path(:bulk_action => 'delete', :model_name => "player", :bulk_ids => @delete_ids)) click_button "Cancel" end it "should not delete records" do RailsAdmin::AbstractModel.new("Player").count.should == 3 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
elucid-rails_admin-0.0.1 | spec/requests/basic/bulk_destroy/rails_admin_basic_bulk_destroy_spec.rb |