@@ -13,10 +13,8 @@ test.eq(entropinnyum.getMaxMana(), entropinnyum.getMana(), "Entropinnyum should
1313test .eq (6500 , entropinnyum .getMaxMana (), " Entropinnyum should have a max mana of 6500" )
1414-- test.assert(entropinnyum.isOnEnchantedSoil(), "Entropinnyum should be on enchanted soil") TODO: the function is currently broken
1515test .assert (not entropinnyum .isFloating (), " Entropinnyum should not be floating" )
16- if entropinnyum .isFull and entropinnyum .isEmpty then
17- test .assert (entropinnyum .isFull (), " Entropinnyum should be full" )
18- test .assert (not entropinnyum .isEmpty (), " Entropinnyum should not be empty" )
19- end
16+ -- test.assert(entropinnyum.isFull(), "Entropinnyum should be full") TODO: uncomment for 1.20.1 AP versions
17+ -- test.assert(not entropinnyum.isEmpty(), "Entropinnyum should not be empty") TODO: uncomment for 1.20.1 AP versions
2018
2119-- Test for Endoflame (Flower has no mana stored and is on normal soil)
2220test .eq (" manaFlower" , peripheral .getType (" right" ), " Peripheral should be manaFlower" )
@@ -27,10 +25,8 @@ test.eq(0, endoflame.getMana(), "Endoflame should have no mana")
2725test .eq (300 , endoflame .getMaxMana (), " Endoflame should have a max mana of 300" )
2826-- test.assert(not endoflame.isOnEnchantedSoil(), "Endoflame should not be on enchanted soil") TODO: the function is currently broken
2927test .assert (not endoflame .isFloating (), " Endoflame should not be floating" )
30- if endoflame .isFull and endoflame .isEmpty then
31- test .assert (not endoflame .isFull (), " Endoflame should not be full" )
32- test .assert (endoflame .isEmpty (), " Endoflame should be empty" )
33- end
28+ -- test.assert(not endoflame.isFull(), "Endoflame should not be full") TODO: uncomment for 1.20.1 AP versions
29+ -- test.assert(endoflame.isEmpty(), "Endoflame should be empty") TODO: uncomment for 1.20.1 AP versions
3430
3531-- Test for Kekimurus (Flower has 1800 mana stored and is floating)
3632test .eq (" manaFlower" , peripheral .getType (" back" ), " Peripheral should be manaFlower" )
@@ -41,7 +37,5 @@ test.eq(1800, kekimurus.getMana(), "Kekimurus should have 1800 mana")
4137test .eq (9001 , kekimurus .getMaxMana (), " Kekimurus should have a max mana of 9001" )
4238-- test.assert(not kekimurus.isOnEnchantedSoil(), "Kekimurus should not be on enchanted soil") TODO: the function is currently broken
4339test .assert (kekimurus .isFloating (), " Kekimurus should be floating" )
44- if kekimurus .isFull and kekimurus .isEmpty then
45- test .assert (not kekimurus .isFull (), " Kekimurus should not be full" )
46- test .assert (not kekimurus .isEmpty (), " Kekimurus should not be empty" )
47- end
40+ -- test.assert(not kekimurus.isFull(), "Kekimurus should not be full") TODO: uncomment for 1.20.1 AP versions
41+ -- test.assert(not kekimurus.isEmpty(), "Kekimurus should not be empty") TODO: uncomment for 1.20.1 AP versions
0 commit comments