Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Dräger committed Apr 18, 2019
1 parent 9808091 commit cb76620
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions README.md
@@ -1,4 +1,5 @@
<img width="150px" height="150px" align="right" src="skrape.png"/>
<a href="https://docs.skrape.it/docs/"><img width="150px" height="150px" align="right" src="skrape.png"/><a/>
<a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/testing.html#spring-mvc-test-framework"><img width="150px" height="150px" align="right" src="spring.png"/><a/>

[![Documentation](https://img.shields.io/badge/skrape%7Bit%7D-docs-blue.svg)](https://docs.skrape.it)
[![maven central](https://img.shields.io/maven-central/v/it.skrape/skrapeit-mockmvc.svg?color=0)](https://search.maven.org/search?q=g:it.skrape%20AND%20a:skrapeit-mockmvc&skrapeit-mockmvc=gav)
Expand All @@ -12,14 +13,43 @@
[skrape{it} MockMvc Extension](https://docs.skrape.it)
======================================================

An Extension for MockMvc tests to enable meaningful testing of controllers that that produces HTML.
An Extension for [Spring MockMvc](https://docs.spring.io/spring/docs/current/spring-framework-reference/testing.html#spring-mvc-test-framework) tests to enable meaningful testing of controllers that produces HTML.

_**[skrape{it}](http://www.skrape.it)**_ is a Kotlin-based HTML testing and web scraping library
that can be used seamlessly in Spring-Boot, Android or other JVM projects.
It places particular emphasis on ease of use, a high level of readability,
attention to performance through the use of non-blocking operations and is not
bound to a specific test runner.

### Setup
> Gradle (Kotlin DSL):
>```
>testCompile("it.skrape:skrapeit-core:+")
>testCompile("it.skrape:skrapeit-mockmvc:+")
>```
> Gradle (Groovy DSL):
>```
>testCompile "it.skrape:skrapeit-core:+"
>testCompile "it.skrape:skrapeit-mockmvc:+"
>```
> Maven:
>```
><dependency>
> <groupId>it.skrape</groupId>
> <artifactId>skrapeit-core</artifactId>
> <version>LATEST</version>
> <scope>test</scope>
> </dependency>
><dependency>
> <groupId>it.skrape</groupId>
> <artifactId>skrapeit-mockmvc</artifactId>
> <version>LATEST</version>
> <scope>test</scope>
> </dependency>
>```
### Read the Docs

You'll always find documentation of the latest release at
Expand Down
Binary file added skrape.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added spring.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cb76620

Please sign in to comment.