class Sus::Receive::WithBlock

def call(assertions, subject)

def call(assertions, subject)
	assertions.nested(self) do |assertions|
		
		Expect.new(assertions, subject).not.to(Be == nil)
	end
end

def initialize(predicate)

def initialize(predicate)
	@predicate = predicate
end

def print(output)

def print(output)
	output.write("with block", @predicate)
end