From 51000ea1f971c23fe6da73b5c49e0040b2d0c27f Mon Sep 17 00:00:00 2001 From: Brian Henry Date: Sat, 1 May 2021 02:02:22 -0700 Subject: [PATCH] Doesn't seem to namespace Mustache https://github.com/coenjacobs/mozart/issues/99 @Screenfeed --- tests/Issues/MozartIssue99Test.php | 64 ++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 tests/Issues/MozartIssue99Test.php diff --git a/tests/Issues/MozartIssue99Test.php b/tests/Issues/MozartIssue99Test.php new file mode 100644 index 00000000..6b6a7410 --- /dev/null +++ b/tests/Issues/MozartIssue99Test.php @@ -0,0 +1,64 @@ +testsWorkingDir . '/composer.json', $composerJsonString); + + chdir($this->testsWorkingDir); + + exec('composer install'); + + $inputInterfaceMock = $this->createMock(InputInterface::class); + $outputInterfaceMock = $this->createMock(OutputInterface::class); + + $mozartCompose = new Compose(); + + $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock); + + $this->markTestIncomplete("What to assert!?"); + } +}