1## this tests the server side in a successful auth of type ANONYMOUS 
2
3SERVER
4## verify that prior to doing anything, we haven't authed as anyone
5EXPECT_HAVE_NO_CREDENTIALS
6SEND 'AUTH ANONYMOUS 442d42757320312e312e31'
7EXPECT_COMMAND OK
8EXPECT_STATE WAITING_FOR_INPUT
9SEND 'BEGIN'
10EXPECT_STATE AUTHENTICATED
11## verify that we are still anonymous
12EXPECT_HAVE_NO_CREDENTIALS
13
14