/** @test * */
 public function particularFileRulesOverrideGlobRules()
 {
     // Arrange
     $calculator = new \ShopFitter\Plan\Theme\ThemeActionPlanner();
     $this->simpleShopfile->addReplaceRule(new ReplaceRule("locales/en.default.json"));
     // Act
     $actual = $calculator->generatePlan(vfs\vfsStream::url("root/theme"), $this->simpleShopfile);
     // Assert
     $this->assertEquals("replace", $actual["vfs://root/theme/locales/en.default.json"]["strategy"]);
 }