summaryrefslogtreecommitdiffstats
path: root/views/composer
diff options
context:
space:
mode:
Diffstat (limited to 'views/composer')
-rw-r--r--views/composer/tests/tst_composerview.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/views/composer/tests/tst_composerview.qml b/views/composer/tests/tst_composerview.qml
index eac391c1..aa427d3f 100644
--- a/views/composer/tests/tst_composerview.qml
+++ b/views/composer/tests/tst_composerview.qml
@@ -93,5 +93,9 @@ TestCase {
93 93
94 tryVerify(function(){ return TestStore.load("mail", {resource: "resource2"}) }) 94 tryVerify(function(){ return TestStore.load("mail", {resource: "resource2"}) })
95 tryVerify(function(){ return !TestStore.load("mail", {resource: "resource1"}) }) 95 tryVerify(function(){ return !TestStore.load("mail", {resource: "resource1"}) })
96
97 var outgoingMail = TestStore.read(TestStore.load("mail", {resource: "resource2"}))
98 compare(outgoingMail.subject, "subject")
99 compare(outgoingMail.draft, false)
96 } 100 }
97} 101}