about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-13 10:09:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-13 10:09:46 -0700
commit39171d57b4f67c8f6d761585e12a4f1cd69241c4 (patch)
tree0395b3f0d787ca1486ed9789c6704aa6d4d4f0f8
parent43d2d20e55c052c5844a38d0d87526f68c7e2217 (diff)
downloadmu-39171d57b4f67c8f6d761585e12a4f1cd69241c4.tar.gz
1059
-rw-r--r--cpp/040string.mu6
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/040string.mu b/cpp/040string.mu
index b42fbc9c..e85dc083 100644
--- a/cpp/040string.mu
+++ b/cpp/040string.mu
@@ -63,6 +63,12 @@ scenario string-equal-distinct-lengths [
   memory should contain [
     3 <- 0  # abc != abcd
   ]
+  trace should contain [
+    string-equal: comparing lengths
+  ]
+  trace should not contain [
+    string-equal: comparing characters
+  ]
 ]
 
 scenario string-equal-with-empty [