Sha256: 3a337d517fd70fbcd545123469b887ad18a0421b7dd3c41f895a6438bf08f4fe
Contents?: true
Size: 525 Bytes
Versions: 72
Compression:
Stored size: 525 Bytes
Contents
require 'spec_helper' describe ActiveFedora::Persistence do before :all do class SpecNode include ActiveFedora::Persistence end end after :all do Object.send(:remove_const, :SpecNode) end subject { SpecNode.new } describe "#create_needs_index?" do it "should be true" do subject.send(:create_needs_index?).should be_true end end describe "#update_needs_index?" do it "should be true" do subject.send(:update_needs_index?).should be_true end end end
Version data entries
72 entries across 72 versions & 1 rubygems