Closed Kixiron closed 1 year ago
Base: 92.24% // Head: 92.48% // Increases project coverage by +0.24%
:tada:
Coverage data is based on head (
9b37f19
) compared to base (72d9d0b
). Patch coverage: 100.00% of modified lines in pull request are covered.
:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
You need to put the test in the integration test folder. Under #[cfg(loom)]
all the atomics and such become weird loom shit, which is broken to use outside loom::model
. You could also put your tests behind #[cfg(not(loom))]
, but just put them with the others.
in 1.1.5
Adds the
ArcStr::repeat
andArcStr::try_repeat
functions which are morally equivalent toString::repeat
, allows users to avoid an intermediateString
allocation in some circumstances