diff --git a/test/acceptance/Stream/StreamWrapper/StatAcceptanceTest.php b/test/acceptance/Stream/StreamWrapper/StatAcceptanceTest.php new file mode 100644 index 0000000..065c0bf --- /dev/null +++ b/test/acceptance/Stream/StreamWrapper/StatAcceptanceTest.php @@ -0,0 +1,23 @@ + [ + 'bar' => 'baz' + ] + ]; + + public function testIsDir() + { + $this->assertTrue(is_dir("$this->scheme://foo")); + } + + public function testIsFile() + { + $this->assertTrue(is_file("$this->scheme://foo/bar")); + } +}