Sha256: 9cf31abf9f6a4210be0503f3bf75671e67d361869899fc1c2eb9f10816692fa2
Contents?: true
Size: 1.38 KB
Versions: 23
Compression:
Stored size: 1.38 KB
Contents
require File.join( File.dirname(__FILE__), "..", "spec_helper" ) require 'active_fedora' require 'active_fedora/model' require "rexml/document" require 'ftools' require 'mocha' include ActiveFedora::Model include Mocha::API describe 'bugs' do class FooHistory < ActiveFedora::Base has_metadata :type=>ActiveFedora::MetadataDatastream, :name=>"someData" do |m| m.field "fubar", :string m.field "swank", :text end has_metadata :type=>ActiveFedora::MetadataDatastream, :name=>"withText" do |m| m.field "fubar", :text end end before(:each) do @test_object = FooHistory.new @test_object.save end after(:each) do @test_object.delete end it "should not clobber everything when setting a value" do ds = @test_object.datastreams["someData"] ds.fubar_values.should == [] ds.should_not be_nil ds.fubar_values=['bar'] ds.fubar_values.should == ['bar'] @test_object.save @test_object.pid.should_not be_nil x = *FooHistory.find(@test_object.pid) ds2 = x.datastreams["someData"] ds2.fubar_values.should == ['bar'] ds2.fubar_values = ["meh"] ds2.fubar_values.should == ["meh"] x.save x = *FooHistory.find(@test_object.pid) x.datastreams['someData'].fubar_values.should == ["meh"] x.save end it "should update the index, even if there is no metadata" do pending oh = FooHistory.new oh.save end end
Version data entries
23 entries across 23 versions & 1 rubygems
Version | Path |
---|---|
active-fedora-3.1.0.pre3 | spec/integration/bug_spec.rb |
active-fedora-3.1.0.pre2 | spec/integration/bug_spec.rb |
active-fedora-3.1.0.pre1 | spec/integration/bug_spec.rb |