diff --git a/tests/Integration/EventTest.php b/tests/Integration/EventTest.php index 9448606..64f5269 100644 --- a/tests/Integration/EventTest.php +++ b/tests/Integration/EventTest.php @@ -82,6 +82,14 @@ public function it_can_set_a_name() $this->assertEquals('testname', $this->event->googleEvent['summary']); } + + /** @test */ + public function it_can_set_a_description() + { + $this->event->description = 'Test Description'; + + $this->assertEquals('Test Description', $this->event->googleEvent['description']); + } /** @test */ public function it_can_set_a_location()