From 0b1c32f1f05e7c80b547f042f287dd68c8db96f2 Mon Sep 17 00:00:00 2001 From: Sviridov Alexander Date: Fri, 10 Oct 2014 14:11:26 +0600 Subject: [PATCH] Added: test coverage with undercover.el --- Cask | 3 ++- README.md | 2 +- features/support/env.el | 3 +++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cask b/Cask index 2ffec75..dc15d71 100644 --- a/Cask +++ b/Cask @@ -4,4 +4,5 @@ (development (depends-on "ecukes") - (depends-on "espuds")) + (depends-on "espuds") + (depends-on "undercover")) diff --git a/README.md b/README.md index e076dff..4e7bdfb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# expand-region.el [![Build Status](https://secure.travis-ci.org/magnars/expand-region.el.png)](http://travis-ci.org/magnars/expand-region.el) +# expand-region.el [![Build Status](https://secure.travis-ci.org/magnars/expand-region.el.png)](http://travis-ci.org/magnars/expand-region.el) [![Coverage Status](https://img.shields.io/coveralls/magnars/expand-region.el.svg)](https://coveralls.io/r/magnars/expand-region.el) Expand region increases the selected region by semantic units. Just keep pressing the key until it selects what you want. diff --git a/features/support/env.el b/features/support/env.el index 619b346..8b93b50 100644 --- a/features/support/env.el +++ b/features/support/env.el @@ -5,6 +5,9 @@ (add-to-list 'load-path expand-region-root-path) +(require 'undercover) +(undercover "*.el") + (require 'expand-region) (require 'espuds) (require 'ert)