This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Goutte\Client; | |
class CatalogSignupTest extends PHPUnit_Framework_TestCase | |
{ | |
public function test_successful_catalog_purchase_where_shipping_and_billing_are_the_same_in_washington() | |
{ | |
$email = 'rick' . mt_rand() . '@example.com'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo ">>> Installing Mailhog" | |
# Download binary from github | |
wget --quiet -O ~/mailhog https://github.com/mailhog/MailHog/releases/download/v1.0.0/MailHog_linux_amd64 | |
# Make it executable | |
chmod +x ~/mailhog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Field Group Location: Post Type Supports | |
* Plugin URI: http://qwp6t.me/acf-post-type-supports | |
* Description: Adds ACF Field Group location rule for Post Type Support. NOTE: You must first declare the supported feature in your theme. | |
* Version: 1.0.0 | |
* Author: QWp6t | |
* Author URI: http://qwp6t.me | |
* License: MIT License | |
*/ |