mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:47:35 +00:00
LibCore: Remove Stream::is_{readable,writable}
Next to functions like `is_eof` these were really confusing to use, and the `read`/`write` functions should fail anyways if a stream is not readable/writable.
This commit is contained in:
parent
5a346c4297
commit
5061a905ff
7 changed files with 1 additions and 32 deletions
|
@ -29,8 +29,6 @@ TEST_CASE(file_open)
|
|||
// Testing out some basic file properties.
|
||||
auto file = maybe_file.release_value();
|
||||
EXPECT(file->is_open());
|
||||
EXPECT(!file->is_readable());
|
||||
EXPECT(file->is_writable());
|
||||
EXPECT(!file->is_eof());
|
||||
|
||||
auto maybe_size = file->size();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue