Improve tests; Clean up
This commit is contained in:
parent
da11431edf
commit
7f30097d45
@ -1,11 +1,20 @@
|
|||||||
cast = download("https://api.sampleapis.com/futurama/cast")
|
cast_len = 0
|
||||||
characters = download("https://api.sampleapis.com/futurama/characters")
|
characters_len = 0
|
||||||
episodes = download("https://api.sampleapis.com/futurama/episodes")
|
episodes_len = 0
|
||||||
|
|
||||||
async {
|
async {
|
||||||
|
{
|
||||||
|
cast = download("https://api.sampleapis.com/futurama/cast")
|
||||||
cast_len = length(from_json(cast))
|
cast_len = length(from_json(cast))
|
||||||
|
}
|
||||||
|
{
|
||||||
|
characters = download("https://api.sampleapis.com/futurama/characters")
|
||||||
characters_len = length(from_json(characters))
|
characters_len = length(from_json(characters))
|
||||||
|
}
|
||||||
|
{
|
||||||
|
episodes = download("https://api.sampleapis.com/futurama/episodes")
|
||||||
episodes_len = length(from_json(episodes))
|
episodes_len = length(from_json(episodes))
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
output ([cast_len, characters_len, episodes_len])
|
output ([cast_len, characters_len, episodes_len])
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
handle = thread:spawn("my_thread", {
|
|
||||||
|
|
||||||
})
|
|
@ -13,11 +13,29 @@ fn integer() {
|
|||||||
assert_eq!(interpret("-666"), Ok(Value::Integer(-666)));
|
assert_eq!(interpret("-666"), Ok(Value::Integer(-666)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn integer_overflow() {
|
||||||
|
assert_eq!(
|
||||||
|
interpret("9223372036854775807 + 1"),
|
||||||
|
Ok(Value::Integer(i64::MIN))
|
||||||
|
);
|
||||||
|
assert_eq!(
|
||||||
|
interpret("-9223372036854775808 - 1"),
|
||||||
|
Ok(Value::Integer(i64::MAX))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn float() {
|
fn float() {
|
||||||
assert_eq!(interpret("0.1"), Ok(Value::Float(0.1)));
|
assert_eq!(interpret("0.1"), Ok(Value::Float(0.1)));
|
||||||
assert_eq!(interpret("12.3"), Ok(Value::Float(12.3)));
|
assert_eq!(
|
||||||
assert_eq!(interpret("-6.66"), Ok(Value::Float(-6.66)));
|
interpret("1.7976931348623157e308f64"),
|
||||||
|
Ok(Value::Float(f64::MAX))
|
||||||
|
);
|
||||||
|
assert_eq!(
|
||||||
|
interpret("-1.7976931348623157e308f64"),
|
||||||
|
Ok(Value::Float(f64::MIN))
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
Loading…
Reference in New Issue
Block a user