You are here

function Braintree_MultipleValueOrTextNodeTest::testIs in Commerce Braintree 7

File

braintree_php/tests/unit/MultipleValueOrTextNodeTest.php, line 13

Class

Braintree_MultipleValueOrTextNodeTest

Code

function testIs() {
  $node = new Braintree_MultipleValueOrTextNode('field');
  $node
    ->is('value');
  $this
    ->assertEquals(array(
    'is' => 'value',
  ), $node
    ->toParam());
}