about summary refs log tree commit diff
path: root/t/006_emailer.t
diff options
context:
space:
mode:
Diffstat (limited to 't/006_emailer.t')
-rw-r--r--t/006_emailer.t16
1 files changed, 14 insertions, 2 deletions
diff --git a/t/006_emailer.t b/t/006_emailer.t
index cc343d1..2df25f1 100644
--- a/t/006_emailer.t
+++ b/t/006_emailer.t
@@ -2,12 +2,24 @@ use strict;
 use warnings;
 use Test::Most tests => 3;
 use Data::Dumper;
+use Test::MockObject;
 
 use_ok "jitterbug::Emailer";
 
 {
-    my $conf = { foo => 'bar' };
-    my $task = {};
+    my $conf = { jitterbug => { build_process => 'bar'} };
+    my $commit = Test::MockObject->new;
+    my $project = Test::MockObject->new;
+    my $task = Test::MockObject->new;
+
+    $project->mock('name', sub { 'ponie' });
+
+    $commit->mock('sha256', sub { 'c0decafe' });
+    $commit->mock('content', sub { 'this should be JSON' } );
+
+    $task->mock('commit', sub { $commit });
+    $task->mock('project', sub { $project });
+
     my $tap = "1..1\nok 1\n";
     my $e = jitterbug::Emailer->new($conf, $task, $tap);