diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/calendar_spec.rb | 4 | ||||
-rw-r--r-- | spec/layouts_spec.rb | 18 | ||||
-rw-r--r-- | spec/output/.gitignore | 0 |
3 files changed, 20 insertions, 2 deletions
diff --git a/spec/calendar_spec.rb b/spec/calendar_spec.rb index 3680b3b..6739a9f 100644 --- a/spec/calendar_spec.rb +++ b/spec/calendar_spec.rb @@ -1,6 +1,6 @@ require 'rspec' require_relative '../lib/carlosgoce/calendar' -require_relative '../lib/carlosgoce/layouts' +require_relative '../lib/carlosgoce/layout/layouts' I18n.load_path = Dir['config/locales/*.yml'] I18n.backend.load_translations @@ -45,7 +45,7 @@ describe 'Calendar' do describe 'Can generate a pdfs' do it 'should receive a layout and pass it the data to create the specified file' do - layout = instance_double('CarlosGoce::Layout') + layout = instance_double('CarlosGoce::Layout::Simple') file = 'destionation.pdf' year = 2015 expect(layout).to receive(:create).with(file, @calendar.to_h, year) diff --git a/spec/layouts_spec.rb b/spec/layouts_spec.rb new file mode 100644 index 0000000..5ff9ccf --- /dev/null +++ b/spec/layouts_spec.rb @@ -0,0 +1,18 @@ +require 'rspec' +require_relative '../lib/carlosgoce/calendar' +require_relative '../lib/carlosgoce/layout/layouts' + +describe 'Layout simple' do + before(:each) do + @calendar = CarlosGoce::Calendar.new + @layout = CarlosGoce::Layout::Simple.new + @file = 'output/simple.pdf' + FileUtils.rm_f(@file) + end + + # Check the generated file on spec/output + it 'creates a pdf' do + @calendar.generate(@layout, @file, Date.today.year) + expect(File.exist? @file).to be(true), lambda {"File #{@file} was not created"} + end +end
\ No newline at end of file diff --git a/spec/output/.gitignore b/spec/output/.gitignore new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/spec/output/.gitignore |