/** * Test get_nonces() method. * * @see WP_Customize_Manager::get_nonces() */ function test_nonces() { $nonces = $this->manager->get_nonces(); $this->assertInternalType( 'array', $nonces ); $this->assertArrayHasKey( 'save', $nonces ); $this->assertArrayHasKey( 'preview', $nonces ); add_filter( 'customize_refresh_nonces', array( $this, 'filter_customize_refresh_nonces' ), 10, 2 ); $nonces = $this->manager->get_nonces(); $this->assertArrayHasKey( 'foo', $nonces ); $this->assertEquals( wp_create_nonce( 'foo' ), $nonces['foo'] ); }