public static class StatusConfig extends JukitoModule {
@Override
protected void configureTest() {
bindScope(RequestScoped.class, TestScope.EAGER_SINGLETON);
Configuration c = new MapConfiguration();
c.setProperty("gutterball.version", "X.Y.Z");
bind(Configuration.class).toInstance(c);
bind(I18n.class).toProvider(I18nProvider.class);
bind(Status.class);
}