Sha256: d54e69b83d985cb0ee7eb827de3858d9bc76999416b9ebd094b97b34287cb72c
Contents?: true
Size: 513 Bytes
Versions: 10
Compression:
Stored size: 513 Bytes
Contents
Feature: Inspect Kernel#q inspects its arguments and prints them, one per line. This is just like Kernel#p, except that it writes to $stderr by default. Scenario: One argument Given a file with: """ require "cute_print" q "abc" """ Then stderr should be """ "abc" """ Scenario: Two arguments Given a file with: """ require "cute_print" q "abc", 123 """ Then stderr should be """ "abc" 123 """
Version data entries
10 entries across 10 versions & 1 rubygems