about summary refs log tree commit diff
path: root/src/libcore/tests/result.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-416/+0
2020-01-11Update test after renaming Result::as_derefLzu Tao-58/+27
2020-01-11Rollup merge of #66045 - mzabaluev:unwrap-infallible, r=dtolnayYuki Okushi-0/+22
Add method Result::into_ok Implementation of https://github.com/rust-lang/rfcs/pull/2799 Tracking issue #61695
2019-12-22Format the worldMark Rousskov-33/+19
2019-12-22Rename Result::unwrap_infallible to into_okMikhail Zabaluev-3/+3
2019-12-22libcore: test Result::unwrap_infallibleMikhail Zabaluev-0/+22
2019-07-18renamed `inner_deref` feature's `deref*()` methods `as_deref*()` as per ↵Brad Gibson-32/+153
discussion https://github.com/rust-lang/rust/issues/50264
2019-03-10we can now skip should_panic tests with the libtest harnessRalf Jung-3/+0
2019-02-13mark failures expected due to panicsRalf Jung-3/+3
2019-02-07disable tests in MiriRalf Jung-0/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-07-29resolved upstream merge conflictsBrad Gibson-3/+5
2018-07-25Add missing dynTatsuyuki Ishi-1/+1
2018-06-01Fix ambiguity in Result testClar Charr-2/+4
2018-05-02Added comments providing justification for support of calling deref_* with ↵Brad Gibson-1/+5
wrong variant
2018-04-30fixed some and added more testsBrad Gibson-17/+85
2018-04-26added DerefOption and DerefResult + tests to stdBrad Gibson-0/+21
2017-09-27Rename option::Missing to NoneErrorHunter Praska-1/+1
2017-09-27Add tests for Option and Result Try implHunter Praska-0/+29
2017-04-03Move libXtest into libX/testsStjepan Glavina-0/+204
This change moves: 1. `libcoretest` into `libcore/tests` 2. `libcollectionstest` into `libcollections/tests` This is a follow-up to #39561.