unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH 1/2] test: add basic test for notmuch setup
@ 2013-05-05 19:18 Jani Nikula
  2013-05-05 19:18 ` [PATCH 2/2] cli: config: fix config file save when the file does not exist Jani Nikula
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Jani Nikula @ 2013-05-05 19:18 UTC (permalink / raw)
  To: notmuch; +Cc: Tomi Ollila

And annotate with test_subtest_known_broken. Hooray.
---
 test/notmuch-test |    1 +
 test/setup        |   28 ++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)
 create mode 100755 test/setup

diff --git a/test/notmuch-test b/test/notmuch-test
index ca9c3dc..27a144e 100755
--- a/test/notmuch-test
+++ b/test/notmuch-test
@@ -20,6 +20,7 @@ TESTS="
   basic
   help-test
   config
+  setup
   new
   count
   search
diff --git a/test/setup b/test/setup
new file mode 100755
index 0000000..8cc5576
--- /dev/null
+++ b/test/setup
@@ -0,0 +1,28 @@
+#!/usr/bin/env bash
+
+test_description='"notmuch setup"'
+. ./test-lib.sh
+
+test_begin_subtest "Create a new config interactively"
+test_subtest_known_broken
+notmuch --config=new-notmuch-config > /dev/null <<EOF
+Test Suite
+test.suite@example.com
+another.suite@example.com
+
+/path/to/maildir
+foo bar
+baz
+EOF
+output=$(notmuch --config=new-notmuch-config config list)
+test_expect_equal "$output" "\
+database.path=/path/to/maildir
+user.name=Test Suite
+user.primary_email=test.suite@example.com
+user.other_email=another.suite@example.com;
+new.tags=foo;bar;
+new.ignore=
+search.exclude_tags=baz;
+maildir.synchronize_flags=true"
+
+test_done
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-05-12 10:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-05 19:18 [PATCH 1/2] test: add basic test for notmuch setup Jani Nikula
2013-05-05 19:18 ` [PATCH 2/2] cli: config: fix config file save when the file does not exist Jani Nikula
2013-05-05 19:27 ` [PATCH 1/2] test: add basic test for notmuch setup Tomi Ollila
2013-05-11 21:47 ` Mark Walters
2013-05-12 10:58 ` David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).