(self)
| 864 | SCRIPT = "url_encoded.js" |
| 865 | |
| 866 | def test_basic(self): |
| 867 | result = run_parser(self.SCRIPT, "temperature=25.5&humidity=60&pressure=1013") |
| 868 | assert result[0] == approx(25.5) |
| 869 | assert result[1] == 60 |
| 870 | assert result[2] == 1013 |
| 871 | |
| 872 | def test_percent_encoding(self): |
| 873 | result = run_parser(self.SCRIPT, "temperature=25%2E5") |
nothing calls this directly
no test coverage detected