You are here

commerce_stripe_test.module in Commerce Stripe 7

Same filename and directory in other branches
  1. 7.3 tests/commerce_stripe_test.module

This file contains the testing code for this module

File

tests/commerce_stripe_test.module
View source
<?php

/**
 * @file
 * This file contains the testing code for this module
 */

/**
 * Implements hook_commerce_stripe_metadata().
 */
function commerce_stripe_test_commerce_stripe_metadata($order) {
  return array(
    'order_number' => $order->order_number,
    'whatever' => 'test',
  );
}