Skip to content

Commit

Permalink
Pushing debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Segall committed Jan 21, 2015
1 parent 659c4f5 commit 590d23e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions message.test
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,17 @@ class MessageArgumentsTestCase extends DrupalWebTestCase {
* Testing ctools message arguments plugin.
*/
public function testCtoolsArguments() {
$query = new EntityFieldQuery();
$reqults = $query
->entityCondition('entity_type', 'message_type')
->execute();

if ($reqults['message_type']) {
$foo = entity_load('message_type', array_keys($reqults['message_type']));
debug($foo);
}


$uri = entity_uri('user', $this->user);

$message = message_create('example_arguments', array('uid' => $this->user->uid));
Expand Down

0 comments on commit 590d23e

Please sign in to comment.