Skip to content

Commit

Permalink
added gitignore and travis ci + coverals config.
Browse files Browse the repository at this point in the history
changed fakemongo dependency to optional
  • Loading branch information
kirilldev committed Oct 14, 2015
1 parent 96e9b98 commit 244310c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
target
*.iml
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: java

after_success:
- mvn clean test jacoco:report coveralls:report
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# mongomery
Simple and useful util for unit and integration testing with mongodb (java 1.5+)

[![Build Status](https://travis-ci.org/kirilldev/test-mongo.svg?branch=master)](https://travis-ci.org/kirilldev/test-mongo)

[![Coverage Status](https://coveralls.io/repos/kirilldev/test-mongo/badge.svg?branch=master&service=github)](https://coveralls.io/github/kirilldev/test-mongo?branch=master)
[![Build Status](https://travis-ci.org/kirilldev/mongomery.svg?branch=master)](https://travis-ci.org/kirilldev/mongomery)

[![Coverage Status](https://coveralls.io/repos/kirilldev/mongomery/badge.svg?branch=master&service=github)](https://coveralls.io/github/kirilldev/mongomery?branch=master)

This library allows you easily populate db with predefined data
from a json file and also do assertions about db state using a json file.
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
<artifactId>fongo</artifactId>
<version>2.0.1</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eluder.coveralls</groupId>
Expand Down

0 comments on commit 244310c

Please sign in to comment.