Sha256: f15f28c9e1f42f0884350bceb6f5e8f149bde6062bf1c5b40f97d172e32e883d
Contents?: true
Size: 1.87 KB
Versions: 3
Compression:
Stored size: 1.87 KB
Contents
require 'spec_helper' describe Hydra::Derivatives do before(:all) do class CustomFile < ActiveFedora::Base include Hydra::Derivatives end end after(:all) { Object.send(:remove_const, :CustomFile) } describe "source_file_service" do before { subject.source_file_service = custom_source_file_service } context "with a global configuration setting" do subject { CustomFile } let(:custom_source_file_service) { "fake service" } it "utilizes the default source file service" do expect(subject.source_file_service).to eq(custom_source_file_service) end end context "with an instance level configuration setting" do subject { CustomFile.new } let(:custom_source_file_service) { "another fake service" } it "accepts a custom source file service as an option" do expect(subject.source_file_service).to eq(custom_source_file_service) end end end Hydra::Derivatives::CONFIG_METHODS.each do |method| describe method.to_s do it 'returns the config value' do expect(subject.send(method)).to eq subject.config.send(method) end end describe "#{method}=" do it 'stores config changes' do expect { subject.send("#{method}=", "new_value") }.to change { subject.config.send(method) }.from(subject.config.send(method)).to("new_value") end end end describe 'reset_config!' do it "resets the configuration" do subject.ffmpeg_path = '/usr/local/ffmpeg-1.0/bin/ffmpeg' subject.reset_config! expect(subject.ffmpeg_path).to eq('ffmpeg') subject.kdu_compress_path = '/usr/local/bin/kdu_compress' subject.reset_config! expect(subject.kdu_compress_path).to eq('kdu_compress') subject.active_encode_poll_time = 2 subject.reset_config! expect(subject.active_encode_poll_time).to eq 10 end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
hydra-derivatives-3.4.2 | spec/units/derivatives_spec.rb |
hydra-derivatives-3.4.1 | spec/units/derivatives_spec.rb |
hydra-derivatives-3.4.0 | spec/units/derivatives_spec.rb |