#!perl
use Cassandane::Tiny;

sub test_good_userids_unixhs
    :UnixHierarchySep
    ($self)
{
    my $admintalk = $self->{adminstore}->get_client();

    my @good_userids = (
        'user/$RACL',
        'user/.foo', # with unixhs, this is not a double-sep!
    );

    foreach my $u (@good_userids) {
        $admintalk->create($u);
        $self->assert_str_equals('ok',
            $admintalk->get_last_completion_response());
    }
}
