Sha256: 5371c8e07986f158732ce64e9b628403567cf50e26a57cebd7eee7d89b230866
Contents?: true
Size: 1.94 KB
Versions: 6
Compression:
Stored size: 1.94 KB
Contents
require 'pione/test-helper' describe Pione::Command::PionePackageUpdate do before do @cmd = Pione::Command::PionePackageUpdate # package @location = Location[Temppath.mkdir] # PIONE document (@location + "TestPioneUpdatePackageInfo").write(<<-PIONE) .@ PackageName :: "TestPioneUpdatePackageInfo" Rule Main input 'i' output 'o'.touch End PIONE # bin (@location + "bin" + "test.sh").write("echo 'Hello, world!' > o") # scenario (@location + "scenario").mkdir # scenario document (@location + "scenario" + "Scenario.pione").write(<<-PIONE) .@ ScenarioName :: "Test" PIONE end it "should update package info files" do cmd = @cmd.new([@location.path.to_s]) Rootage::ScenarioTest.succeed(cmd) (@location + "pione-package.json").should.exist (@location + "pione-package.json").size.should > 0 (@location + "scenario" + "pione-scenario.json").should.exist (@location + "scenario" + "pione-scenario.json").size.should > 0 end it "should not update package info files because they are newer than other files" do ptime = (@location + "pione-package.json").write("").mtime stime = (@location + "scenario" + "pione-scenario.json").write("").mtime cmd = @cmd.new([@location.path.to_s]) Rootage::ScenarioTest.succeed(cmd) (@location + "pione-package.json").mtime.should == ptime (@location + "scenario" + "pione-scenario.json").mtime.should == stime end it "should update package info files by 'force' option" do ptime = (@location + "pione-package.json").write("").mtime stime = (@location + "scenario" + "pione-scenario.json").write("").mtime # make sure mtime is different sleep 1 cmd = @cmd.new([@location.path.to_s, "--force"]) Rootage::ScenarioTest.succeed(cmd) (@location + "pione-package.json").mtime.should > ptime (@location + "scenario" + "pione-scenario.json").mtime.should > stime end end
Version data entries
6 entries across 6 versions & 1 rubygems