From: Mike Jackson Date: Tue, 16 Apr 2013 16:02:36 +0000 (-0700) Subject: Changed assert_true example X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9c3a9d651d97f9719ba4f4fcb7c1a034ecb38767;p=swc-testing-nose.git Changed assert_true example --- diff --git a/testing/Writing.md b/testing/Writing.md index 4ac4900..0fb674e 100755 --- a/testing/Writing.md +++ b/testing/Writing.md @@ -156,7 +156,7 @@ This is a standard format that that is supported by a number of xUnit frameworks We can add more information to the failure messages by providing additional string arguments e.g. - >>> assert_false(expected in actual, "Expected value was not in the output list") + >>> assert_true("GTA" in actual, "Expected value was not in the output list") ## Write some more tests