Sha256: 2dcea03677e7365eba0c1295c7d7a49da454de0886e7eb5eed2144fc34a3bc4c
Contents?: true
Size: 1.18 KB
Versions: 4
Compression:
Stored size: 1.18 KB
Contents
require 'spec_helper' require 'lucid/ast/doc_string' module Lucid module AST describe DocString do describe 'replacing arguments' do before(:each) do @ps = DocString.new("<book>\n<qty>\n", '') end it 'should return a new doc_string with arguments replaced with values' do doc_string_with_replaced_arg = @ps.arguments_replaced({'<book>' => 'Leviathan', '<qty>' => '5'}) doc_string_with_replaced_arg.to_step_definition_arg.should == "Leviathan\n5\n" end it 'should not change the original doc_string' do doc_string_with_replaced_arg = @ps.arguments_replaced({'<book>' => 'Leviathan'}) @ps.to_s.should_not include('Leviathan') end it 'should replace nil with empty string' do ps = DocString.new("'<book>'", '') doc_string_with_replaced_arg = ps.arguments_replaced({'<book>' => nil}) doc_string_with_replaced_arg.to_step_definition_arg.should == "''" end it 'should recognise when just a subset of a cell is delimited' do @ps.should have_text('<qty>') end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
lucid-0.4.1 | spec/lucid/ast/doc_string_spec.rb |
lucid-0.4.0 | spec/lucid/ast/doc_string_spec.rb |
lucid-0.3.3 | spec/lucid/ast/doc_string_spec.rb |
lucid-0.3.0 | spec/lucid/ast/doc_string_spec.rb |