Sha256: 3654255f7f74ac62058ddb0acabb3c31ff447ca645ccea24706749be78a4f78d
Contents?: true
Size: 562 Bytes
Versions: 32
Compression:
Stored size: 562 Bytes
Contents
require 'spec_helper' describe Spree::Taxonomy, :type => :model do context "#destroy" do before do @taxonomy = create(:taxonomy) @root_taxon = @taxonomy.root @child_taxon = create(:taxon, :taxonomy_id => @taxonomy.id, :parent => @root_taxon) end it "should destroy all associated taxons" do @taxonomy.destroy expect{ Spree::Taxon.find(@root_taxon.id) }.to raise_error(ActiveRecord::RecordNotFound) expect{ Spree::Taxon.find(@child_taxon.id) }.to raise_error(ActiveRecord::RecordNotFound) end end end
Version data entries
32 entries across 32 versions & 2 rubygems