Sha256: 76c84c366db48566c51bfb61f67e05f456121232e6b13d08d0a8adff9be4f76c
Contents?: true
Size: 1.73 KB
Versions: 4
Compression:
Stored size: 1.73 KB
Contents
# Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ require 'spec_helper' describe "/tasks/destroy" do include TasksHelper before do login_and_assign end TASK_STATUSES.each do |status| describe "destroy from Tasks tab (#{status} view)" do before do @task = FactoryGirl.create(:task) assign(:task, @task) assign(:view, status) assign(:empty_bucket, :due_asap) assign(:task_total, stub_task_total(status)) end it "should blind up out destroyed task partial" do controller.request.env["HTTP_REFERER"] = "http://localhost/tasks" render expect(rendered).to include("slideUp") expect(rendered).to include("$('#list_due_asap').fadeOut") end it "should update tasks sidebar" do controller.request.env["HTTP_REFERER"] = "http://localhost/tasks" render expect(rendered).to include("$('#sidebar').html") expect(rendered).to have_text("Recent Items") expect(rendered).to have_text("Completed") expect(rendered).to include("$('#filters').effect('shake'") end end end describe "destroy from related asset" do it "should blind up out destroyed task partial" do @task = FactoryGirl.create(:task) assign(:task, @task) controller.request.env["HTTP_REFERER"] = "http://localhost/leads/123" render expect(rendered).to include("slideUp") expect(rendered).not_to include("fadeOut") # bucket is not empty end end end
Version data entries
4 entries across 4 versions & 2 rubygems