Pheasant\Tests\Relationships\RelationshipTest::testEmptyRelationshipsWithoutAllowEmpty PHP Method

testEmptyRelationshipsWithoutAllowEmpty() public method

    public function testEmptyRelationshipsWithoutAllowEmpty()
    {
        $power = new Power(array('description' => 'Spider Senses'));
        $power->save();
        $this->setExpectedException('\\Pheasant\\Exception');
        $foo = $power->Hero;
    }