Sha256: 4672ed73fb3fbfdbac5cea6cb3315f9db2f7eaf21b73eb8f9add8494048cfefd
Contents?: true
Size: 1.51 KB
Versions: 11
Compression:
Stored size: 1.51 KB
Contents
require 'spec_helper' require 'active_fedora' require 'active_fedora/model' require "rexml/document" require 'mocha' include ActiveFedora::Model include Mocha::API describe ActiveFedora::Model do before(:each) do module ModelIntegrationSpec class Basic < ActiveFedora::Base include ActiveFedora::Model def self.pid_namespace "foo" end end end ActiveFedora::RubydoraConnection.connect(ActiveFedora.fedora_config[:url]) @test_instance = ModelIntegrationSpec::Basic.new @test_instance.save end after(:each) do @test_instance.delete Object.send(:remove_const, :ModelIntegrationSpec) end describe '#find' do it "should return an array of instances of the calling Class" do result = ModelIntegrationSpec::Basic.find(:all) result.should be_instance_of(Array) # this test is meaningless if the array length is zero result.length.should > 0 result.each do |obj| obj.class.should == ModelIntegrationSpec::Basic end end end describe '#find_model' do it "should return an object of the given Model whose inner object is nil" do #result = ModelIntegrationSpec::Basic.find_model(@test_instance.pid, ModelIntegrationSpec::Basic) result = ActiveFedora::RubydoraConnection.instance.find_model(@test_instance.pid, ModelIntegrationSpec::Basic) result.class.should == ModelIntegrationSpec::Basic result.inner_object.new?.should be_false end end end
Version data entries
11 entries across 11 versions & 1 rubygems