Sha256: 47014ee20cb9d005c994bc165eef3965cd891b4baa210a1d48244ddb56711620
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 KB
Contents
require 'spec_helper' describe PoseAssignment do before :each do PoseAssignment.delete_all end describe "delete_class_index" do before :each do FactoryGirl.create :pose_assignment, :posable_id => 1, :posable_type => 'PosableOne' FactoryGirl.create :pose_assignment, :posable_id => 2, :posable_type => 'PosableTwo' PoseAssignment.delete_class_index PosableOne end it "deletes all PoseAssignments for the given class" do PoseAssignment.where(:posable_type => 'PosableOne').should have(0).items end it "doesn't delete PoseAssignments for other classes" do PoseAssignment.where(:posable_type => 'PosableTwo').should have(1).items end end describe "cleanup_orphaned_pose_assignments" do it "deletes the assignment if the posable object doesn't exist" do FactoryGirl.create :pose_assignment, :posable_id => 2, :posable_type => 'PosableOne' PoseAssignment.count.should > 0 PoseAssignment.cleanup_orphaned_pose_assignments PoseAssignment.should have(0).items end it "deletes the assignment if the pose_word doesn't exist" do assignment = FactoryGirl.create :pose_assignment, :pose_word => nil, :pose_word_id => 27 PoseAssignment.cleanup_orphaned_pose_assignments PoseAssignment.find_by_id(assignment.id).should be_nil end it "doesn't delete the assignment if it is still used" do assignment = FactoryGirl.create :pose_assignment PoseAssignment.cleanup_orphaned_pose_assignments PoseAssignment.find_by_id(assignment.id).should_not be_nil end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pose-1.1.0 | spec/pose_assignment_spec.rb |