<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -232,7 +232,7 @@ they do, and what they expect.
     testclass NAME?
       ( exercises CLASS
       | extends CLASS (, CLASS)*
-      | +?uses HELPER (, HELPER)*
+      | uses HELPER (, HELPER)*
       )*
 
 Where B&lt;NAME&gt; is is an optional test class name - the sort of thing you're
@@ -259,7 +259,7 @@ inheritance. Friends don't let friends do multiple inheritance, but
 Test::Class::Sugar's not a friend, it's a robot servant which will provide you
 with more than enough rope.
 
-=item +?uses HELPER (, HELPER)*
+=item uses HELPER (, HELPER)*
 
 Ah, the glory that is the C&lt;uses&gt; clause. If you don't provide a uses clause,
 Test::Class::Sugar will assume that you want to use L&lt;Test::Most&gt; as your
@@ -273,14 +273,6 @@ making you write C&lt;uses Test::This, Test::That, Test::TheOther&gt;, you can write
 C&lt;uses -This, -That, -TheOther&gt; and we'll expand the C&lt;-&gt; into C&lt;Test::&gt; and
 do the right thing.
 
-If, like me, you like Test::Most, but you want to use some other helper
-modules, then you'd do:
-
-    testclass AnotherExample +uses -MockObject, Moose {...}
-
-C&lt;+uses&gt; extends the list of helper classes, so as well as autousing
-Test::Most, you'll get L&lt;Test::MockObject&gt; and L&lt;Moose&gt;.
-
 Note that, if you need to do anything special in the way of import arguments,
 you should do the C&lt;use&gt; yourself. We're all about the 80:20 rule here.
 </diff>
      <filename>lib/Test/Class/Sugar.pm</filename>
    </modified>
    <modified>
      <diff>@@ -97,7 +97,7 @@ sub strip_testclass_name {
     my $self = shift;
     $self-&gt;skipspace;
 
-    ! $self-&gt;looking_at(qr/^(?:\+?uses|ex(?:tends|ercises))/, 9)
+    ! $self-&gt;looking_at(qr/^(?:uses|ex(?:tends|ercises))/, 9)
     &amp;&amp; $self-&gt;strip_name;
 }
 
@@ -133,16 +133,9 @@ sub strip_class_under_test {
 
 sub strip_helper_classes {
     my($self, $opts) = @_;
-    my $keyword = 'uses';
-    if ($self-&gt;looking_at('+')) {
-        $keyword = &quot;+&quot;.$keyword;
-    }
-    return unless $self-&gt;strip_string($keyword);
+    return unless $self-&gt;strip_string('uses');
 
-    $opts-&gt;{helpers} //=
-      $keyword eq '+helper'
-        ? [qw/Test::Most/]
-        : [];
+    $opts-&gt;{helpers} //= [];
 
     while (1) {
         $self-&gt;skipspace;</diff>
      <filename>lib/Test/Class/Sugar/Context.pm</filename>
    </modified>
    <modified>
      <diff>@@ -38,12 +38,6 @@ testclass ShortcutHelper uses -Exception {
     }
 }
 
-testclass AddsCarp +uses Carp, -Warn {
-    test warning_test {
-        warning_like { carp &quot;foo&quot; } qr/foo/, &quot;expects a warning&quot;;
-    }
-}
-
 testclass TestClass exercises Test::Class::Sugar {
     test test_requirement {
         ok $test-&gt;subject-&gt;isa( 'UNIVERSAL' );</diff>
      <filename>t/initial.t</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f32851fd3c2777934dc88750eb43f4116dd363e7</id>
    </parent>
  </parents>
  <author>
    <name>Piers Cawley</name>
    <email>pdcawley@bofh.org.uk</email>
  </author>
  <url>http://github.com/pdcawley/test-class-sugar/commit/cdbc7ef17a349536089a3937d4bc694941c9bd4f</url>
  <id>cdbc7ef17a349536089a3937d4bc694941c9bd4f</id>
  <committed-date>2009-04-03T23:15:10-07:00</committed-date>
  <authored-date>2009-04-03T23:15:10-07:00</authored-date>
  <message>Removed the confusing +uses keyword</message>
  <tree>5a25d8dcd88deb02be0f007447c402e0b014e489</tree>
  <committer>
    <name>Piers Cawley</name>
    <email>pdcawley@bofh.org.uk</email>
  </committer>
</commit>
