Sha256: afdba65c533f4390c5393f57f8ea77aa26594ac3784e18f65cc73bb1f3313f52
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
require 'spec_helper' SimpleCov.command_name('Tag') unless RUBY_VERSION.to_s < '1.9.0' describe 'Tag, Unit' do clazz = CukeModeler::Tag it_should_behave_like 'a nested element', clazz it_should_behave_like 'a bare bones element', clazz it_should_behave_like 'a prepopulated element', clazz it_should_behave_like 'a sourced element', clazz it_should_behave_like 'a raw element', clazz it 'can be parsed from stand alone text' do source = '@a_tag' expect { @element = clazz.new(source) }.to_not raise_error @element.name.should == '@a_tag' end before(:each) do @element = clazz.new end it 'has a name' do @element.should respond_to(:name) end it 'can get and set its name' do @element.name = :some_name @element.name.should == :some_name @element.name = :some_other_name @element.name.should == :some_other_name end context 'tag output edge cases' do it 'is a String' do @element.to_s.should be_a(String) end it 'can output an empty tag' do expect { @element.to_s }.to_not raise_error end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cuke_modeler-0.0.2 | spec/unit/tag_unit_spec.rb |
cuke_modeler-0.0.1 | spec/unit/tag_unit_spec.rb |