use of com.artipie.front.auth.YamlUsers in project front by artipie.
the class DeleteUserTest method init.
@BeforeEach
void init() {
this.blsto = new BlockingStorage(new InMemoryStorage());
this.users = new YamlUsers(DeleteUserTest.KEY, this.blsto);
}
use of com.artipie.front.auth.YamlUsers in project front by artipie.
the class UsersTest method init.
@BeforeEach
void init() {
this.blsto = new BlockingStorage(new InMemoryStorage());
this.users = new YamlUsers(UsersTest.CREDS, this.blsto);
}
use of com.artipie.front.auth.YamlUsers in project front by artipie.
the class PutUserTest method init.
@BeforeEach
void init() {
this.asto = new BlockingStorage(new InMemoryStorage());
this.users = new YamlUsers(PutUserTest.CREDS_YAML, this.asto);
}
Aggregations