spec/code/parser/nothing_spec.rb in template-ruby-0.1.0 vs spec/code/parser/nothing_spec.rb in template-ruby-0.2.0
- old
+ new
@@ -4,10 +4,10 @@
subject { described_class.new.parse(input) }
[
["nothing", { nothing: "nothing" }],
["null", { nothing: "null" }],
- ["nil", { nothing: "nil" }]
+ ["nil", { nothing: "nil" }],
].each do |(input, expected)|
context input.inspect do
let(:input) { input }
it "succeeds" do