DirkGroenen\Pinterest\Tests\Endpoints\BoardsTest::testCreate PHP Method

testCreate() public method

public testCreate ( )
    public function testCreate()
    {
        $response = $this->pinterest->boards->create(array("name" => "Test board from API", "description" => "Test Board From API Test"));
        $this->assertInstanceOf("DirkGroenen\\Pinterest\\Models\\Board", $response);
        $this->assertEquals($response->id, "503066289565421205");
    }