<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -172,7 +172,7 @@ What Perl sees, after Test::Class::Sugar has done its work, is roughly:
     }
 
 Some of the assumptions we made are overrideable, others aren't. Yet. Most of
-them will be though.
+them will be though. See L&lt;/Changing Assumptions&gt; for details
 
 =head2 Why you shouldn't use Test::Class::Sugar
 
@@ -316,6 +316,53 @@ works just fine.
 
 =back
 
+=head2 Changing Assumptions
+
+There are several aspects of Test::Class::Sugar's policy that you may disagree with. If you do, you can adjust them by passing a 'defaults' hash at use time. For example:
+
+    use Test::Class::Sugar defaults =&gt; { prefix =&gt; TestSuite };
+
+Here's a list of the possible default settings and what they affect.
+
+=over
+
+=item prefix
+
+Changes the prefix used for autogenerating test class names from C&lt;Test::&gt; to whatever you specify, so:
+
+    use Test::Class::Sugar defaults =&gt; { prefix =&gt; TestSuite };
+
+    testclass exercises Something {
+        ...
+    }
+
+will build a test class called C&lt;TestSuite::Something&gt;
+
+=item test_instance
+
+B&lt;COMING SOON&gt;
+
+Prefer C&lt;$self&gt; to C&lt;$test&gt; in your test methods? Then the C&lt;test_instance&gt; default is your friend. Just do
+
+    use Test::Class::Sugar defaults =&gt; { test_instance =&gt; '$self' }
+
+and all manner of things shall be well.
+
+
+
+=item uses
+
+B&lt;&lt; COMING SOON, BUT PROBABLY LATER THAN C&lt;test_instance&gt; &gt;&gt;
+
+Bored of adding the same old C&lt;uses&gt; clause to your every testclass? Fix it at use time like so:
+
+    use Test::Class::Sugar
+        defaults =&gt; {
+            uses =&gt; [qw/Test::More Moose/]
+        };
+
+=back
+
 =head1 DIAGNOSTICS
 
 Right now, Test::Class::Sugar's diagnostics range from the confusing to the</diff>
      <filename>lib/Test/Class/Sugar.pm</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>ba903d68f35db0ee89bf6a063e97bad7648c1e2d</id>
    </parent>
  </parents>
  <author>
    <name>Piers Cawley</name>
    <email>pdcawley@bofh.org.uk</email>
  </author>
  <url>http://github.com/pdcawley/test-class-sugar/commit/2f5c079ef4d36076ae41cca5fc9cdda3607df13a</url>
  <id>2f5c079ef4d36076ae41cca5fc9cdda3607df13a</id>
  <committed-date>2009-04-05T23:39:39-07:00</committed-date>
  <authored-date>2009-04-05T23:39:39-07:00</authored-date>
  <message>Documented the defaults clause</message>
  <tree>dc1f128bf8646afe466ff58b289285d871b37e33</tree>
  <committer>
    <name>Piers Cawley</name>
    <email>pdcawley@bofh.org.uk</email>
  </committer>
</commit>
