summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcskksc <ckoparkar@live.in>2016-04-29 14:41:22 +0530
committercskksc <ckoparkar@live.in>2016-04-30 01:50:19 +0530
commitb2c64bf55e4a2807c3c3bc7e0f58c247e19e2d53 (patch)
treea4356b818dc79d27f6fea9be7f2bf44671634f9e
parentfa0d935f2640de1d16a321e56674f7fcf11aee93 (diff)
Add commentary and license section to test files
-rw-r--r--test/cider-apropos-tests.el29
-rw-r--r--test/cider-browse-ns-tests.el29
-rw-r--r--test/cider-classpath-tests.el29
-rw-r--r--test/cider-client-tests.el30
-rw-r--r--test/cider-common-tests.el29
-rw-r--r--test/cider-debug-tests.el29
-rw-r--r--test/cider-eldoc-tests.el29
-rw-r--r--test/cider-error-parsing-tests.el29
-rw-r--r--test/cider-grimoire-tests.el29
-rw-r--r--test/cider-interaction-tests.el29
-rw-r--r--test/cider-repl-tests.el29
-rw-r--r--test/cider-selector-tests.el29
-rw-r--r--test/cider-stacktrace-tests.el29
-rw-r--r--test/cider-util-tests.el29
-rw-r--r--test/nrepl-bencode-tests.el29
-rw-r--r--test/nrepl-client-tests.el29
-rw-r--r--test/nrepl-dict-tests.el29
17 files changed, 494 insertions, 0 deletions
diff --git a/test/cider-apropos-tests.el b/test/cider-apropos-tests.el
index 6c8b4e57..c7df1958 100644
--- a/test/cider-apropos-tests.el
+++ b/test/cider-apropos-tests.el
@@ -1,3 +1,32 @@
+;;; cider-apropos-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider)
(require 'cider-apropos)
diff --git a/test/cider-browse-ns-tests.el b/test/cider-browse-ns-tests.el
index 111d272c..b6cd538d 100644
--- a/test/cider-browse-ns-tests.el
+++ b/test/cider-browse-ns-tests.el
@@ -1,3 +1,32 @@
+;;; cider-browse-ns-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider-browse-ns)
diff --git a/test/cider-classpath-tests.el b/test/cider-classpath-tests.el
index 6947a22d..5b36adb9 100644
--- a/test/cider-classpath-tests.el
+++ b/test/cider-classpath-tests.el
@@ -1,3 +1,32 @@
+;;; cider-classpath-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider)
(require 'cider-classpath)
diff --git a/test/cider-client-tests.el b/test/cider-client-tests.el
index 28d6d955..fe07573a 100644
--- a/test/cider-client-tests.el
+++ b/test/cider-client-tests.el
@@ -1,3 +1,33 @@
+;;; cider-client-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
+
(require 'buttercup)
(require 'cider)
(require 'cider-client)
diff --git a/test/cider-common-tests.el b/test/cider-common-tests.el
index 9f20aa0a..7acc9b84 100644
--- a/test/cider-common-tests.el
+++ b/test/cider-common-tests.el
@@ -1,3 +1,32 @@
+;;; cider-common-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider)
(require 'cider-common)
diff --git a/test/cider-debug-tests.el b/test/cider-debug-tests.el
index a37621d6..2fcb8449 100644
--- a/test/cider-debug-tests.el
+++ b/test/cider-debug-tests.el
@@ -1,3 +1,32 @@
+;;; cider-debug-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider)
diff --git a/test/cider-eldoc-tests.el b/test/cider-eldoc-tests.el
index 0e48f0cf..f560f2b7 100644
--- a/test/cider-eldoc-tests.el
+++ b/test/cider-eldoc-tests.el
@@ -1,3 +1,32 @@
+;;; cider-eldoc-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider-eldoc)
diff --git a/test/cider-error-parsing-tests.el b/test/cider-error-parsing-tests.el
index a45133e4..2e2bd4be 100644
--- a/test/cider-error-parsing-tests.el
+++ b/test/cider-error-parsing-tests.el
@@ -1,3 +1,32 @@
+;;; cider-error-parsing-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'cider)
(require 'buttercup)
diff --git a/test/cider-grimoire-tests.el b/test/cider-grimoire-tests.el
index 31ba4476..3476867d 100644
--- a/test/cider-grimoire-tests.el
+++ b/test/cider-grimoire-tests.el
@@ -1,3 +1,32 @@
+;;; cider-grimoire-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider)
(require 'cider-grimoire)
diff --git a/test/cider-interaction-tests.el b/test/cider-interaction-tests.el
index d9a45938..9d03c998 100644
--- a/test/cider-interaction-tests.el
+++ b/test/cider-interaction-tests.el
@@ -1,3 +1,32 @@
+;;; cider-interaction-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider-interaction)
diff --git a/test/cider-repl-tests.el b/test/cider-repl-tests.el
index 24cd639d..6c8c4dc1 100644
--- a/test/cider-repl-tests.el
+++ b/test/cider-repl-tests.el
@@ -1,3 +1,32 @@
+;;; cider-repl-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider-repl)
diff --git a/test/cider-selector-tests.el b/test/cider-selector-tests.el
index 760e5ced..44cee425 100644
--- a/test/cider-selector-tests.el
+++ b/test/cider-selector-tests.el
@@ -1,3 +1,32 @@
+;;; cider-selector-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider)
(require 'cider-selector)
diff --git a/test/cider-stacktrace-tests.el b/test/cider-stacktrace-tests.el
index 6aec4835..20f7b657 100644
--- a/test/cider-stacktrace-tests.el
+++ b/test/cider-stacktrace-tests.el
@@ -1,3 +1,32 @@
+;;; cider-stacktrace-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider)
(require 'cider-stacktrace)
diff --git a/test/cider-util-tests.el b/test/cider-util-tests.el
index 8dda7aec..f52d8394 100644
--- a/test/cider-util-tests.el
+++ b/test/cider-util-tests.el
@@ -1,3 +1,32 @@
+;;; cider-util-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider)
(require 'cider-util)
diff --git a/test/nrepl-bencode-tests.el b/test/nrepl-bencode-tests.el
index 03119cbb..1a738df4 100644
--- a/test/nrepl-bencode-tests.el
+++ b/test/nrepl-bencode-tests.el
@@ -1,3 +1,32 @@
+;;; nrepl-bencode-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'nrepl-client)
diff --git a/test/nrepl-client-tests.el b/test/nrepl-client-tests.el
index dd204eb4..7a26ac51 100644
--- a/test/nrepl-client-tests.el
+++ b/test/nrepl-client-tests.el
@@ -1,3 +1,32 @@
+;;; nrepl-client-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'cider)
diff --git a/test/nrepl-dict-tests.el b/test/nrepl-dict-tests.el
index 1b9189d2..5b0a5c3a 100644
--- a/test/nrepl-dict-tests.el
+++ b/test/nrepl-dict-tests.el
@@ -1,3 +1,32 @@
+;;; nrepl-dict-tests.el
+
+;; Copyright © 2012-2016 Tim King, Bozhidar Batsov
+
+;; Author: Tim King <kingtim@gmail.com>
+;; Bozhidar Batsov <bozhidar@batsov.com>
+;; Artur Malabarba <bruce.connor.am@gmail.com>
+
+;; This file is NOT part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see `http://www.gnu.org/licenses/'.
+
+;;; Commentary:
+
+;; This file is part of CIDER
+
+;;; Code:
+
(require 'buttercup)
(require 'nrepl-client)