Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finish converting all tests to new framework part 1 (sequences) #53

Open
wants to merge 35 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9288b0f
Move towards more flexible animation looping
SUPERCILEX May 30, 2022
30b077a
Don't use nightly stuff
SUPERCILEX May 30, 2022
c01b3ea
Merge remote-tracking branch 'upstream/main' into loop
SUPERCILEX Jun 7, 2022
3df8870
Get rid of is_looping and finish implementing stuff
SUPERCILEX Jun 7, 2022
4e15064
Reformat all comments using rustfmt
SUPERCILEX Jun 7, 2022
31ef21f
Merge branch 'comments' into loop
SUPERCILEX Jun 7, 2022
178db98
Final cleanup
SUPERCILEX Jun 7, 2022
351c180
Merge remote-tracking branch 'upstream/main' into loop
SUPERCILEX Jun 14, 2022
e119f73
Tidy
SUPERCILEX Jun 14, 2022
2f96f06
Use repeat and mirrored repeat terminology
SUPERCILEX Jul 2, 2022
90bd931
Scootch duration to a place that makes more sense
SUPERCILEX Jul 3, 2022
7e2aac1
Merge remote-tracking branch 'upstream/main' into loop
SUPERCILEX Jul 11, 2022
af67aaa
Start implementing plan
SUPERCILEX Jul 11, 2022
74a79cc
Fix very odd failure that doesn't occur on nightly
SUPERCILEX Jul 11, 2022
595c2f9
Remove debug statement
SUPERCILEX Jul 11, 2022
035c8cc
Address feedback
SUPERCILEX Jul 12, 2022
23acc28
Attempt to improve testing
SUPERCILEX Aug 3, 2022
712e4f5
Restore rewind test
SUPERCILEX Aug 3, 2022
9ff395d
Progress
SUPERCILEX Aug 3, 2022
583e5a4
Merge remote-tracking branch 'upstream/main' into tests
SUPERCILEX Aug 4, 2022
7967a02
Restore undone changes
SUPERCILEX Aug 4, 2022
9f7839d
Simplify events
SUPERCILEX Aug 4, 2022
8c96a96
Finish converting basic tween tests
SUPERCILEX Aug 4, 2022
282300f
Add a test of RepeatCount::For
SUPERCILEX Aug 4, 2022
3babed5
Use zip_eq instead of custom asserts
SUPERCILEX Aug 4, 2022
a97116d
Use as_nanos
SUPERCILEX Aug 4, 2022
c2c80bb
Merge remote-tracking branch 'upstream/main' into tests
SUPERCILEX Aug 6, 2022
024033c
Address feedback
SUPERCILEX Aug 6, 2022
4c4706a
Add more rewind tests
SUPERCILEX Aug 6, 2022
85beb8a
Use typed API
SUPERCILEX Aug 10, 2022
f335432
Address feedback
SUPERCILEX Aug 12, 2022
3c16b02
Slightly simplify generics
SUPERCILEX Sep 20, 2022
c5fb7f7
Fix potential length mismatch between test iterators
SUPERCILEX Sep 20, 2022
ca952ff
Merge branch 'main' into tests
SUPERCILEX Sep 20, 2022
dffbaec
Finish converting all tests to new framework part 1
SUPERCILEX Sep 20, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ bevy = { version = "0.8", default-features = false }

[dev-dependencies]
bevy-inspector-egui = "0.12"
itertools = "0.10.3"
rstest = "0.15.0"

[[example]]
name = "menu"
Expand Down
Loading