Sha256: 8e769190457765c52fcda5d529af8202231fc76cda00581ed66f42e909979c71
Contents?: true
Size: 428 Bytes
Versions: 253
Compression:
Stored size: 428 Bytes
Contents
require 'spec_helper' module ParenthesizedExpressionSpec describe "An unadorned expression inside of parentheses" do testing_expression '("foo")' it "should behave as normal" do parse('foo').should_not be_nil end end describe "A prefixed-expression inside of parentheses" do testing_expression '(!"foo")' it "should behave as normal" do parse('foo').should be_nil end end end
Version data entries
253 entries across 208 versions & 31 rubygems