summaryrefslogtreecommitdiffstats
path: root/Twilio/Tests/Integration/Preview/Wireless/RatePlanTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'Twilio/Tests/Integration/Preview/Wireless/RatePlanTest.php')
-rw-r--r--Twilio/Tests/Integration/Preview/Wireless/RatePlanTest.php46
1 files changed, 0 insertions, 46 deletions
diff --git a/Twilio/Tests/Integration/Preview/Wireless/RatePlanTest.php b/Twilio/Tests/Integration/Preview/Wireless/RatePlanTest.php
deleted file mode 100644
index 4d9fc5d..0000000
--- a/Twilio/Tests/Integration/Preview/Wireless/RatePlanTest.php
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-
-/**
- * This code was generated by
- * \ / _ _ _| _ _
- * | (_)\/(_)(_|\/| |(/_ v1.0.0
- * / /
- */
-
-namespace Twilio\Tests\Integration\Preview\Wireless;
-
-use Twilio\Exceptions\DeserializeException;
-use Twilio\Exceptions\TwilioException;
-use Twilio\Http\Response;
-use Twilio\Tests\HolodeckTestCase;
-use Twilio\Tests\Request;
-
-class RatePlanTest extends HolodeckTestCase {
- public function testReadRequest() {
- $this->holodeck->mock(new Response(500, ''));
-
- try {
- $this->twilio->preview->wireless->ratePlans->read();
- } catch (DeserializeException $e) {}
- catch (TwilioException $e) {}
-
- $this->assertTrue($this->holodeck->hasRequest(new Request(
- 'get',
- 'https://preview.twilio.com/wireless/RatePlans'
- )));
- }
-
- public function testFetchRequest() {
- $this->holodeck->mock(new Response(500, ''));
-
- try {
- $this->twilio->preview->wireless->ratePlans("sid")->fetch();
- } catch (DeserializeException $e) {}
- catch (TwilioException $e) {}
-
- $this->assertTrue($this->holodeck->hasRequest(new Request(
- 'get',
- 'https://preview.twilio.com/wireless/RatePlans/sid'
- )));
- }
-} \ No newline at end of file