|
1 |
| -# Selfie: snapshot testing and [memoizing](https://selfie.dev/jvm/cache) for Java, Kotlin, and the JVM |
| 1 | +# Selfie: snapshot testing and memoizing for Python, JVM, and [(your PR here)](https://github.com/diffplug/selfie/issues/85) |
2 | 2 |
|
3 | 3 | 
|
4 | 4 |
|
5 | 5 | ## Key features
|
6 | 6 |
|
7 |
| -- Just [add a test dependency](https://selfie.dev/jvm/get-started#installation), zero setup, zero config. |
8 |
| -- Snapshots can be [inline literals](https://selfie.dev/jvm#literal) or [on disk](https://selfie.dev/jvm#like-a-filesystem). |
9 |
| -- Use `expectSelfie` for testing or `cacheSelfie` for [memoizing expensive API calls](https://selfie.dev/jvm/cache). |
| 7 | +- Just add a test dependency ([py](https://selfie.dev/py/get-started#installation), [jvm](https://selfie.dev/jvm/get-started#installation)), zero setup, zero config. |
| 8 | +- Snapshots can be [inline literals](https://selfie.dev/py#literal) or [on disk](https://selfie.dev/py#like-a-filesystem). |
| 9 | +- Use `expect_selfie` for testing or `cache_selfie` for [memoizing expensive API calls](https://selfie.dev/py/cache). |
10 | 10 | - Disk snapshots are automatically [garbage collected](https://github.com/diffplug/selfie/blob/main/jvm/selfie-runner-junit5/src/main/kotlin/com/diffplug/selfie/junit5/SelfieGC.kt) when the test class or test method is removed.
|
11 |
| -- Snapshots are **just strings**. Use html, json, markdown, whatever. No [magic serializers](https://selfie.dev/jvm/facets#typed-snapshots). |
| 11 | +- Snapshots are **just strings**. Use html, json, markdown, whatever. No [magic serializers](https://selfie.dev/py/cache#roundtripping-typed-data). |
12 | 12 | - Record **multiple facets** of the entity under test, e.g. for a web request...
|
13 | 13 | - store the HTML as one facet
|
14 | 14 | - store HTML-rendered-to-markdown as another facet
|
15 | 15 | - store cookies in another facet
|
16 | 16 | - **assert some facets on disk, others inline**
|
17 |
| - - see gif above for live demo, detailed example [here](https://selfie.dev/jvm/advanced) |
| 17 | + - see gif above for live demo, detailed example [here](https://selfie.dev/py/facets#harmonizing-disk-and-inline-literals) |
18 | 18 |
|
19 |
| -JVM only for now, [python](https://github.com/diffplug/selfie/issues/170) is in progress, other platforms on the way: [js](https://github.com/diffplug/selfie/issues/84), [.NET, go, ...](https://github.com/diffplug/selfie/issues/85) |
| 19 | +Python and JVM ports are both production-ready, other platforms on the way: [js](https://github.com/diffplug/selfie/issues/84), [.NET, go, ...](https://github.com/diffplug/selfie/issues/85) |
20 | 20 |
|
21 | 21 | ## Documentation
|
22 | 22 |
|
23 |
| -- [Installation](https://selfie.dev/jvm/get-started#installation) |
24 |
| -- [Quickstart](https://selfie.dev/jvm/get-started#quickstart) |
25 |
| -- [Facets](https://selfie.dev/jvm/facets) |
26 |
| -- [Caching / memoizing](https://selfie.dev/jvm/cache) |
27 |
| -- [Why selfie](https://selfie.dev/jvm) |
28 |
| -- [API reference](https://kdoc.selfie.dev/) |
| 23 | +- Quickstart **([py](https://selfie.dev/py/get-started#quickstart), [jvm](https://selfie.dev/jvm/get-started#quickstart))** |
| 24 | +- Facets **([py](https://selfie.dev/py/facets), [jvm](https://selfie.dev/jvm/facets))** |
| 25 | +- Caching / memoizing **([py](https://selfie.dev/py/cache), [jvm](https://selfie.dev/jvm/cache))** |
| 26 | +- Why selfie **([py](https://selfie.dev/py), [jvm](https://selfie.dev/jvm))** |
| 27 | +- API reference **([py](https://pydoc.selfie.dev/namespacemembers_func), [jvm](https://kdoc.selfie.dev/))** |
29 | 28 |
|
30 | 29 | ## Contributing
|
31 | 30 |
|
|
0 commit comments