test/lib/vedeu/cursors/dsl_test.rb in vedeu-0.6.71 vs test/lib/vedeu/cursors/dsl_test.rb in vedeu-0.7.0

- old
+ new

@@ -13,76 +13,76 @@ # before { Vedeu.cursors.reset } # subject { instance.cursor(_value) } - # it { + # it do # subject # Vedeu.cursors.find('actinium').visible?.must_equal(false) - # } + # end # context 'when the value is false' do # let(:_value) { false } - # it { + # it do # subject # Vedeu.cursors.find('actinium').visible?.must_equal(false) - # } + # end # end # context 'when the value is nil' do # let(:_value) {} - # it { + # it do # subject # Vedeu.cursors.find('actinium').visible?.must_equal(false) - # } + # end # end # context 'when the value is :show' do # let(:_value) { :show } - # it { + # it do # subject # Vedeu.cursors.find('actinium').visible?.must_equal(true) - # } + # end # end # context 'when the value is true' do # let(:_value) { true } - # it { + # it do # subject # Vedeu.cursors.find('actinium').visible?.must_equal(true) - # } + # end # end # context 'when the value is :yes' do # let(:_value) { :yes } - # it { + # it do # subject # Vedeu.cursors.find('actinium').visible?.must_equal(true) - # } + # end # end # end # describe '#cursor!' do # subject { instance.cursor! } - # it { + # it do # subject # Vedeu.cursors.find('actinium').visible?.must_equal(true) - # } + # end # end # describe '#no_cursor!' do # subject { instance.no_cursor! } - # it { + # it do # subject # Vedeu.cursors.find('actinium').visible?.must_equal(false) - # } + # end # end end # DSL end # Cursors