Cross Reference: sentence_helper_spec.rb
xref
: /
ontohub
/
spec
/
helpers
/
sentence_helper_spec.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
sentence_helper_spec.rb revision 696ecfbf968bc780c60af3e5a01691be7fa6792b
require
'spec_helper'
describe
SentenceHelper
do
context
'Redundant names'
do
let
(:
sentence
)
do
FactoryGirl.create
:
sentence
,
name
:
'aaaa'
,
text
:
'fasdfiasdf %(aaaa)%'
end
it
'should be removed from text'
do
expect
(
format_for_view
(
sentence
)
)
.
to
eq
(
'fasdfiasdf'
)
end
end
end