Test that the read method (no arg) results the expected value
()
| 15 | |
| 16 | |
| 17 | def test_02(): |
| 18 | """ |
| 19 | Test that the read method (no arg) |
| 20 | results the expected value |
| 21 | """ |
| 22 | string = "Test String 2" |
| 23 | f = StringIO(string) |
| 24 | |
| 25 | assert f.read() == string |
| 26 | assert f.read() == "" |
| 27 | |
| 28 | |
| 29 | def test_03(): |
no test coverage detected