mirror of
https://github.com/MinimalBible/MinimalBible
synced 2025-07-05 07:44:43 -04:00
Testing now working
Still requires shenanigans in its own right, but this is a much better platform. Plus, I don't need to mess with the application context, all I do is change the injections.
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
package org.bspeice.minimalbible;
|
||||
|
||||
/**
|
||||
* List modules used by default MinimalBible configuration
|
||||
*/
|
||||
public class Modules {
|
||||
private Modules() {}
|
||||
|
||||
public static Object[] list(MinimalBible app) {
|
||||
return new Object[] {
|
||||
new MinimalBibleModules(app)
|
||||
};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user