require 'spec_helper' module Diagnostics module Data describe Text do let(:text) { described_class.new('foo') } describe '#plain' do specify do text.plain.should eq('foo') end end describe '#html' do specify do text.html.should eq('
foo
') end end end end end