/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Upload File
HOME
<?php namespace Stripe; /** * @internal * @covers \Stripe\CountrySpec */ final class CountrySpecTest extends \Stripe\TestCase { use TestHelper; const TEST_RESOURCE_ID = 'US'; public function testIsListable() { $this->expectsRequest( 'get', '/v1/country_specs' ); $resources = CountrySpec::all(); static::compatAssertIsArray($resources->data); static::assertInstanceOf(\Stripe\CountrySpec::class, $resources->data[0]); } public function testIsRetrievable() { $this->expectsRequest( 'get', '/v1/country_specs/' . self::TEST_RESOURCE_ID ); $resource = CountrySpec::retrieve(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\CountrySpec::class, $resource); } }