guideline 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/guideline/version.rb
CHANGED
@@ -111,6 +111,20 @@ module Guideline
|
|
111
111
|
should have_error
|
112
112
|
end
|
113
113
|
end
|
114
|
+
|
115
|
+
context "when there is embedded expansion brace" do
|
116
|
+
let(:script) do
|
117
|
+
<<-'EOF'
|
118
|
+
{
|
119
|
+
:a => "#{b}",
|
120
|
+
}
|
121
|
+
EOF
|
122
|
+
end
|
123
|
+
|
124
|
+
it "does not detect error" do
|
125
|
+
should_not have_error
|
126
|
+
end
|
127
|
+
end
|
114
128
|
end
|
115
129
|
end
|
116
130
|
end
|