├── .gitignore ├── LICENSE ├── README.md ├── behat.yml ├── composer.json ├── features ├── blog.feature ├── bootstrap │ └── FeatureContext.php ├── login.feature ├── plugins.feature └── post-manager.feature └── src ├── Context ├── Initializer │ └── WordPressContextInitializer.php └── WordPressContext.php └── ServiceContainer └── WordPressExtension.php /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | vendor 3 | *.phar 4 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/README.md -------------------------------------------------------------------------------- /behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/behat.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/composer.json -------------------------------------------------------------------------------- /features/blog.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/features/blog.feature -------------------------------------------------------------------------------- /features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /features/login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/features/login.feature -------------------------------------------------------------------------------- /features/plugins.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/features/plugins.feature -------------------------------------------------------------------------------- /features/post-manager.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/features/post-manager.feature -------------------------------------------------------------------------------- /src/Context/Initializer/WordPressContextInitializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/src/Context/Initializer/WordPressContextInitializer.php -------------------------------------------------------------------------------- /src/Context/WordPressContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/src/Context/WordPressContext.php -------------------------------------------------------------------------------- /src/ServiceContainer/WordPressExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/WordPressBehatExtension/HEAD/src/ServiceContainer/WordPressExtension.php --------------------------------------------------------------------------------