Sha256: c47a01c66a101ad6c7e1c6f887a18fc849d0d4272fb9fc622a5500fd4177423f
Contents?: true
Size: 507 Bytes
Versions: 19
Compression:
Stored size: 507 Bytes
Contents
require 'spec_helper' module RevealCK describe Slide do let :intro_slide do Slide.new template: 'intro', title: 'Reveal.js', subtitle: 'HTML Presentations Made Easy', author: 'Hakim El Hattab', site: 'http://hakim.se', twitter: 'hakimel' end describe '#html' do it 'produces html output' do output = intro_slide.html expect(output).to include 'Reveal.js' end end end end
Version data entries
19 entries across 19 versions & 1 rubygems