Sha256: 44dda0e2ac4f37dadd444a8a85da48d1c571c2196c47a8760776ff4ae0701c90
Contents?: true
Size: 1.4 KB
Versions: 2
Compression:
Stored size: 1.4 KB
Contents
require 'test_helper' module Vedeu module Templating describe Template do let(:described) { Vedeu::Templating::Template } let(:instance) { described.new(object, path) } let(:object) {} let(:path) {} describe '#initialize' do it { instance.must_be_instance_of(described) } it { instance.instance_variable_get('@object').must_equal(object) } it { instance.instance_variable_get('@path').must_equal('') } end describe '.parse' do subject { described.parse(object, path) } context 'when the path is empty' do let(:path) { '' } it { proc { subject }.must_raise(Vedeu::MissingRequired) } end context 'when the path is does not exist' do let(:path) { '/tmp/vedeu_does_not_exist' } before { File.stubs(:exist?).returns(false) } it { proc { subject }.must_raise(Vedeu::MissingRequired) } end context 'when the path exists' do let(:path) { '/tmp/vedeu_exists' } let(:expected) { "This is a test.\n" } before { File.stubs(:exist?).returns(true) File.stubs(:read).returns(expected) } it { subject.must_equal(expected) } end end describe '#parse' do it { instance.must_respond_to(:parse) } end end # Templating end # Template end # Vedeu
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.5.6 | test/lib/vedeu/templating/template_test.rb |
vedeu-0.5.5 | test/lib/vedeu/templating/template_test.rb |