/** @test **/
 public function theGitPathIsUsedInAMergeRule()
 {
     // Arrange
     $calculator = new \ShopFitter\Plan\Theme\ThemeActionPlanner();
     file_put_contents(vfs\vfsStream::url("root/theme/config/another_file.json"), "");
     $this->simpleShopfile->addMergeRule(new MergeRule("config/another_file.json", "path/in/git"));
     // Act
     $actual = $calculator->generatePlan(vfs\vfsStream::url("root/theme"), $this->simpleShopfile);
     // Assert
     $this->assertEquals("path/in/git", $actual["vfs://root/theme/config/another_file.json"]["git_path"]);
 }