Sha256: 9ae49b121bfead04e71f380b2e77a204fa508ea4ff85163d28b0c406f3b106b0
Contents?: true
Size: 1.69 KB
Versions: 28
Compression:
Stored size: 1.69 KB
Contents
require 'test_helper' module Vedeu module DSL describe View do let(:described) { Vedeu::DSL::View } describe '.interface' do after { Vedeu.interfaces.reset } subject { described.interface('flourine') do # ... end } it { subject.must_be_instance_of(Vedeu::Interface) } context 'when the block is not given' do subject { described.interface } it { proc { subject }.must_raise(InvalidSyntax) } end context 'when the name was not set' do subject { described.interface('') do # ... end } it { proc { subject }.must_raise(MissingRequired) } end end describe '.renders' do subject { described.renders do # ... end } it { described.must_respond_to(:render) } it { subject.must_be_instance_of(Array) } context 'when the block is not given' do subject { described.renders } it { proc { subject }.must_raise(InvalidSyntax) } end context 'when the block is given' do it { subject.must_equal([]) } end end describe '.views' do subject { described.views do # ... end } it { subject.must_be_instance_of(Array) } context 'when the block is not given' do subject { described.views } it { proc { subject }.must_raise(InvalidSyntax) } end context 'when the block is given' do it { subject.must_equal([]) } end end end # View end # DSL end # Vedeu
Version data entries
28 entries across 28 versions & 1 rubygems