Sha256: 4359d6b3f30920beffbc352c0fd5d238cc227b442d8e7ba661c3bf142f4357e6
Contents?: true
Size: 1.61 KB
Versions: 1
Compression:
Stored size: 1.61 KB
Contents
require 'spec_helper' require 'digitalfilmtree/util/mediainfo' describe Digitalfilmtree::Util::Mediainfo do describe ".bin (binary path)" do it "is initially unset" do subject.bin.should be_false end context "when set" do let(:path) { __FILE__ } before { subject.bin = path } it "is global to the module" do Digitalfilmtree::Util::Mediainfo.bin.should eq path end end end let(:platform) { Digitalfilmtree::Util.platform } describe ".autoconfigure" do context "on windows 7 x64 and up" do before do platform.stub(:mac?).and_return(false) platform.stub(:windows?).and_return(true) end it "sets the binary to the vendored windows exe" do subject.autoconfigure subject.bin.should match /windows/ File.exists?(subject.bin).should be_true end end context "on mac 10.6 and up" do before do platform.stub(:mac?).and_return(true) platform.stub(:windows?).and_return(false) end it "sets the binary to the vendored mac binary" do subject.autoconfigure subject.bin.should match /mac/ File.exists?(subject.bin).should be_true end end describe ".mediainfo" do before do Digitalfilmtree::Util::Mediainfo .autoconfigure end subject { Class.new { include Digitalfilmtree::Util::Mediainfo }.new } it "queries using mediainfo" do version_string = "MediaInfo Command line, \nMediaInfoLib - v0.7.64\n" subject.mediainfo("--version", false).should eq version_string end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
digitalfilmtree-util-0.0.1 | spec/lib/digitalfilmtree/util/mediainfo_spec.rb |