11f7a6d114
Certain tests involving HTTP requests were sometimes hanging indefinitely, so this uses Mockito for HTTP mocking. This seemingly resolves the issue and makes these tests more reliable. The existing can_fail_404_links test has been renamed to can_fail_unresolved_links, to represent what actually occurs in the test. The can_fail_404_links test now deals with a proper 404 response. Just to be clear, the check_site test in the site component will still create outgoing HTTP requests (due to the URLs used in the test_site), so this commit only uses HTTP mocking where possible.
27 lines
497 B
TOML
27 lines
497 B
TOML
[package]
|
|
name = "templates"
|
|
version = "0.1.0"
|
|
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tera = "1"
|
|
base64 = "0.11"
|
|
lazy_static = "1"
|
|
pulldown-cmark = "0.6"
|
|
toml = "0.5"
|
|
csv = "1"
|
|
image = "0.22"
|
|
serde_json = "1.0"
|
|
reqwest = "0.9"
|
|
url = "2"
|
|
|
|
errors = { path = "../errors" }
|
|
utils = { path = "../utils" }
|
|
library = { path = "../library" }
|
|
config = { path = "../config" }
|
|
imageproc = { path = "../imageproc" }
|
|
|
|
[dev-dependencies]
|
|
mockito = "0.22"
|