Sha256: c711b532059ba6b4ca7f37301ddccc538cfc7fd393fe2b327a7688ff72a07a1f
Contents?: true
Size: 1.71 KB
Versions: 10
Compression:
Stored size: 1.71 KB
Contents
require 'test_helper' module Vedeu module Renderers describe File do let(:described) { Vedeu::Renderers::File } let(:instance) { described.new(output, options) } let(:output) { 'Some content...' } let(:options) { { filename: filename, timestamp: timestamp, } } let(:filename) { 'out' } let(:timestamp) { false } describe '#initialize' do it { instance.must_be_instance_of(described) } it { instance.instance_variable_get('@output').must_equal(output) } it { instance.instance_variable_get('@options').must_equal(options) } end describe '.render' do it { described.must_respond_to(:render) } end describe '#render' do let(:_time) { Time.new(2015, 4, 12, 20, 05, 00, "+01:00") } subject { instance.render } it { subject.must_be_instance_of(String) } context 'when the filename option is not set' do context 'when the timestamp option is not set' do it { ::File.expects(:open).with('/tmp/out', 'w') subject } end context 'when the timestamp option is set' do let(:timestamp) { true } before { Time.stubs(:now).returns(_time) } it { ::File.expects(:open).with('/tmp/out_1428865500.0', 'w') subject } end end context 'when the filename option is set' do let(:filename) { 'some_name' } it { ::File.expects(:open).with('/tmp/some_name', 'w') subject } end end end # File end # Renderers end # Vedeu
Version data entries
10 entries across 10 versions & 1 rubygems