Skip to content

Commit bad3c91

Browse files
committed
Update all the README and CONTRIBUTING stuff.
1 parent 92ffe81 commit bad3c91

File tree

4 files changed

+19
-18
lines changed

4 files changed

+19
-18
lines changed

CONTRIBUTING.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Contributing to Selfie
22

33
- To improve our webpage go to [`selfie.dev/README.md`](selfie.dev/README.md)
4+
- To improve our Python, go to [`python/README.md`](python/README.md)
45
- To improve our JVM, Javascript, or WASM implementations, go to [`jvm/README.md`](jvm/README.md)
56
- To improve the webpage of our published kdoc, [kdoc.selfie.dev](https://kdoc.selfie.dev), go to [`jvm/gradle/dokka/README.md`](jvm/gradle/dokka/README.md)
67
- To contribute for a different platform (python, go, etc.) we're happy to help! It should probably live in a different repo until it's close to `1.0`, but once it's near completion we're happy to maintain it here if you would like. Discuss in [selfie#85](https://github.com/diffplug/selfie/issues/85), but also feel free to open a PR with any ideas you have.

README.md

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
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)
22

33
![gif demo of selfie in action](https://docs.diffplug.com/selfie/selfie-demo.gif)
44

55
## Key features
66

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).
1010
- 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).
1212
- Record **multiple facets** of the entity under test, e.g. for a web request...
1313
- store the HTML as one facet
1414
- store HTML-rendered-to-markdown as another facet
1515
- store cookies in another facet
1616
- **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)
1818

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)
2020

2121
## Documentation
2222

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/))**
2928

3029
## Contributing
3130

jvm/README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Selfie snapshot testing for Java, Kotlin, and the JVM
22

3-
- [Quickstart](https://selfie.dev/jvm/get-started)
4-
- [Facets](https://selfie.dev/jvm/facets)
5-
- [Caching / memoizing](https://selfie.dev/jvm/cache)
6-
- [Why selfie](https://selfie.dev/jvm)
3+
- High-level documentation - [selfie.dev](https://selfie.dev/jvm/get-started).
4+
- API documentation - [pydoc.selfie.dev](https://kdoc.selfie.dev).
5+
- Source code - [github.com/diffplug/selfie](https://github.com/diffplug/selfie)
76

87
## Contributing
98

python/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
# Selfie snapshot testing for Python
2+
13
- High-level documentation - [selfie.dev](https://selfie.dev/py/get-started).
24
- API documentation - [pydoc.selfie.dev](https://pydoc.selfie.dev/namespaces).
35
- Source code - [github.com/diffplug/selfie](https://github.com/diffplug/selfie)
46

57
## Contributing
68

7-
Dependencies are managed using uv:
9+
PR's welcome! Dependencies are managed using uv:
810

911
- https://docs.astral.sh/uv/getting-started/installation/
1012
- then cd into `selfie-lib` and run `uv sync` to get the dependencies

0 commit comments

Comments
 (0)