Allow printing NotLoaded values in tests

Stephen Paul Weber created

Change summary

test/test_helper.rb | 6 ++++++
1 file changed, 6 insertions(+)

Detailed changes

test/test_helper.rb 🔗

@@ -164,6 +164,12 @@ def execute_command(
 	).execute(&blk).sync
 end
 
+class NotLoaded < BasicObject
+	def inspect
+		"<NotLoaded #{@name}>"
+	end
+end
+
 class Matching
 	def initialize(&block)
 		@block = block