summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2018-07-21 17:18:56 +0800
committerSean Whitton <spwhitton@spwhitton.name>2018-07-21 17:18:56 +0800
commit8f12abd18e8cc0faa72735ccad28423c9cdef61f (patch)
tree4ff3d306e28b0e02e49d5c46e747c8c68fcf676e
parente9a0d00556d93f9c80f6366cd157b732162a681f (diff)
patch README for Debian
-rw-r--r--README.md28
1 files changed, 4 insertions, 24 deletions
diff --git a/README.md b/README.md
index 7c507cd..8ba7a24 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,5 @@
# Buttercup — Behavior-Driven Emacs Lisp Testing
-[![Build Status](https://api.travis-ci.org/jorgenschaefer/emacs-buttercup.svg?branch=master)](https://travis-ci.org/jorgenschaefer/emacs-buttercup)
-[![MELPA Stable](http://stable.melpa.org/packages/buttercup-badge.svg)](http://stable.melpa.org/#/buttercup)
-
-![Ranculus repens, photo by sannse](docs/images/buttercup.jpg)
-
Buttercup is a behavior-driven development framework for testing Emacs
Lisp code. It allows to group related tests so they can share common
set-up and tear-down code, and allows the programmer to “spy” on
@@ -16,7 +11,7 @@ The framework is heavily inspired by
## Example
-*Full article: [Writing Tests](docs/writing-tests.md)*
+*Full article: [Writing Tests](writing-tests.md)*
A simple test looks like this.
@@ -26,26 +21,11 @@ A simple test looks like this.
(expect t :to-be t)))
```
-## Installation and Usage
-
-*Full article: [Running Tests](docs/running-tests.md)*
-
-You can install buttercup from
-[MELPA Stable](http://stable.melpa.org/). Add the following to your
-`init.el` or `.emacs` file:
-
-```
-(require 'package)
-(add-to-list 'package-archives
- '("melpa-stable" . "http://stable.melpa.org/packages/") t)
-```
-
-This should allow you to `M-x package-install RET buttercup RET`.
+## Usage
-Alternatively, users of Debian 9 or later or Ubuntu 16.10 or later may
-simply `apt-get install elpa-buttercup`.
+*Full article: [Running Tests](running-tests.md)*
-Now create a file called `test-feature.el` with these contents:
+Create a file called `test-feature.el` with these contents:
```Lisp
(describe "A suite"