There's a session fixture which makes `Store` invariantly raise to prevent writing to the home directory.
()
| 34 | |
| 35 | |
| 36 | def test_our_session_fixture_works(): |
| 37 | """There's a session fixture which makes `Store` invariantly raise to |
| 38 | prevent writing to the home directory. |
| 39 | """ |
| 40 | with pytest.raises(AssertionError): |
| 41 | Store() |
| 42 | |
| 43 | |
| 44 | def test_get_default_directory_defaults_to_home(): |