aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/lib-int.rs
diff options
context:
space:
mode:
authorMarijn Haverbeke <[email protected]>2011-05-06 22:13:13 +0200
committerMarijn Haverbeke <[email protected]>2011-05-06 22:51:19 +0200
commita3ec0b1f643d00b9418e4884bd7caa07bf052201 (patch)
tree82000510ac9c9cf3f0c7cf4ae5f3c6b123b559cb /src/test/run-pass/lib-int.rs
parentRegister new snapshots. (diff)
downloadrust-a3ec0b1f643d00b9418e4884bd7caa07bf052201.tar.xz
rust-a3ec0b1f643d00b9418e4884bd7caa07bf052201.zip
Rename std modules to be camelcased
(Have fun mergining your stuff with this.)
Diffstat (limited to 'src/test/run-pass/lib-int.rs')
-rw-r--r--src/test/run-pass/lib-int.rs30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/test/run-pass/lib-int.rs b/src/test/run-pass/lib-int.rs
index e4e68351..a5a9a2a1 100644
--- a/src/test/run-pass/lib-int.rs
+++ b/src/test/run-pass/lib-int.rs
@@ -1,25 +1,25 @@
use std;
-import std._int;
-import std._str.eq;
+import std.Int;
+import std.Str.eq;
fn test_to_str() {
- assert (eq(_int.to_str(0, 10u), "0"));
- assert (eq(_int.to_str(1, 10u), "1"));
- assert (eq(_int.to_str(-1, 10u), "-1"));
- assert (eq(_int.to_str(255, 16u), "ff"));
- assert (eq(_int.to_str(100, 10u), "100"));
+ assert (eq(Int.to_str(0, 10u), "0"));
+ assert (eq(Int.to_str(1, 10u), "1"));
+ assert (eq(Int.to_str(-1, 10u), "-1"));
+ assert (eq(Int.to_str(255, 16u), "ff"));
+ assert (eq(Int.to_str(100, 10u), "100"));
}
fn test_pow() {
- assert (_int.pow(0, 0u) == 1);
- assert (_int.pow(0, 1u) == 0);
- assert (_int.pow(0, 2u) == 0);
- assert (_int.pow(-1, 0u) == -1);
- assert (_int.pow(1, 0u) == 1);
- assert (_int.pow(-3, 2u) == 9);
- assert (_int.pow(-3, 3u) == -27);
- assert (_int.pow(4, 9u) == 262144);
+ assert (Int.pow(0, 0u) == 1);
+ assert (Int.pow(0, 1u) == 0);
+ assert (Int.pow(0, 2u) == 0);
+ assert (Int.pow(-1, 0u) == -1);
+ assert (Int.pow(1, 0u) == 1);
+ assert (Int.pow(-3, 2u) == 9);
+ assert (Int.pow(-3, 3u) == -27);
+ assert (Int.pow(4, 9u) == 262144);
}
fn main() {