rust/src/test/run-pass/syntax-extension-fmt.rs

26 lines
569 B
Rust
Raw Normal View History

// xfail-boot
// xfail-stage0
use std;
import std._str;
2011-02-23 23:48:01 -05:00
fn test(str actual, str expected) {
log actual;
log expected;
check (_str.eq(actual, expected));
2011-02-23 23:48:01 -05:00
}
fn main() {
test(#fmt("hello %d friends and %s things", 10, "formatted"),
"hello 10 friends and formatted things");
// Simple tests for types
test(#fmt("%d", 1), "1");
test(#fmt("%i", 2), "2");
test(#fmt("%i", -1), "-1");
2011-04-11 23:39:13 -04:00
test(#fmt("%u", 10u), "10");
test(#fmt("%s", "test"), "test");
test(#fmt("%b", true), "true");
test(#fmt("%b", false), "false");
test(#fmt("%c", 'A'), "A");
}